Skip to main content
GET
/
v1
/
account
/
usage
Quota status and 30-day analytics
curl --request GET \
  --url https://api.ngnmarket.com/v1/account/usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "period": "2026-04",
    "calls_used": 4821,
    "calls_limit": 100000,
    "calls_remaining": 95179,
    "reset_at": "2026-05-01T00:00:00.000Z",
    "daily": [
      {
        "date": "2026-04-16",
        "calls": 312
      },
      {
        "date": "2026-04-17",
        "calls": 489
      }
    ],
    "top_endpoints": [
      {
        "endpoint": "/v1/market/snapshot",
        "calls": 1204
      },
      {
        "endpoint": "/v1/companies",
        "calls": 987
      }
    ],
    "status_breakdown": {
      "2xx": 4710,
      "4xx": 98,
      "5xx": 13,
      "total": 4821
    }
  },
  "meta": {
    "plan": "starter",
    "calls_used": 4821,
    "calls_remaining": 95179,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ngnmarket.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Response

Usage data retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object