Account

Check your subscription tier, quotas, and current usage.

GET /api/v1/account

Returns your subscription tier, quota limits, and current usage.

Headers

Name
Type
Description

Authorization*

string

Bearer YOUR_API_TOKEN

Response (200: OK)

{
  "email": "[email protected]",
  "tier": "Pro",
  "quotas": {
    "queries_limit": 2000,
    "queries_used": 342,
    "uploads_limit": 500,
    "uploads_used": 47,
    "storage_limit": "25.00 GB",
    "storage_used": "1.23 GB",
    "storage_remaining": "23.77 GB"
  }
}

Example

Last updated