Dashboard Overview
Monitor your API usage and system status
24
API Requests Today
3
Active Apps
99.9%
Uptime
128
Data Items
Quick Actions
Recent Activity
App "my-app" registered successfully
5 items added to "users" collection
Updated item in "settings" collection
App Registration
Register your application and get an API key
Get API Key
Your API Key
Quick Start
Get your API key to start using MasterAPI endpoints for data storage and AI capabilities. Your API key will be securely stored in your browser.
API Tester
Test your API endpoints like Postman
Available API Endpoints
GET
/api/health
Check API health status
GET
/api/info
Get API information and version
POST
/api/apps/register
Register new application and get API key
GET
/api/apps
List all registered applications
GET
/api/apps/me
Get current app info (requires API key)
POST
/api/data/:collection
Create data in collection
GET
/api/data/:collection
List all data from collection
GET
/api/databases
List all databases
Status:
-
Time:
-
Size:
-
// Response will appear here...
Data Storage
Store and manage your application data
Data Operations
API Documentation
Complete reference for MasterAPI endpoints
Quick Reference
Base URL
https://api.masterapi.com/v1
Authentication
Authorization: Bearer YOUR_API_KEY
Example Requests
Create Data
POST /data/{collection}
Content-Type: application/json
Authorization: Bearer {api_key}
{
"name": "John",
"email": "john@example.com"
}
Content-Type: application/json
Authorization: Bearer {api_key}
{
"name": "John",
"email": "john@example.com"
}
List Data
GET /data/{collection}
Authorization: Bearer {api_key}
Authorization: Bearer {api_key}