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

Get 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.

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 Operations

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"
}

List Data

GET /data/{collection}
Authorization: Bearer {api_key}