Account
Get Account Usage
Returns a full snapshot of your account status:
- Credits — total, used, and remaining for the current billing cycle
- Rate limits — current usage and reset times for daily, hourly, and per-minute windows
- Plan — your current plan category and renewal dates
- Pricing — credit cost per action type across all public API endpoints
Rate limit: This endpoint is limited to 5 requests per minute.
get/v3/account/usage
Response
Successfully retrieved account usage
Example response
{
"credits": {
"total": 10000,
"used": 1500,
"remaining": 8500
},
"rateLimits": {
"daily": {
"limit": 5000,
"used": 120,
"remaining": 4880,
"resetsAt": "2026-03-31T00:00:00.000Z"
},
"hourly": {
"limit": 5000,
"used": 120,
"remaining": 4880,
"resetsAt": "2026-03-31T00:00:00.000Z"
},
"minute": {
"limit": 5000,
"used": 120,
"remaining": 4880,
"resetsAt": "2026-03-31T00:00:00.000Z"
}
},
"plan": {
"category": "professional",
"renewalType": "annual",
"startDate": "2026-01-01T00:00:00.000Z",
"endDate": "2027-01-01T00:00:00.000Z"
}
}