Usage Statistics

Check your current API usage and remaining quota. This endpoint is free.

GET/api/v1/usage

Get your current API usage statistics and quota.

Notes

  • This endpoint is free and does not count against any quota
  • Use this to monitor your usage before making requests

Response Example

200 OK
{
  "data": {
    "tier": "free",
    "cached": {
      "used": 150,
      "limit": 1000,
      "remaining": 850,
      "period": "daily",
      "resetsAt": "2024-12-18T00:00:00.000Z"
    },
    "realtime": {
      "used": 25,
      "limit": 500,
      "remaining": 475,
      "period": "monthly",
      "resetsAt": "2025-01-01T00:00:00.000Z"
    }
  }
}