Account
Check your plan tier, limits, and current API usage
Returns your current plan tier, credit limits, and current monthly usage. Useful for agents that need to check remaining quota before making requests.
Response Fields
| Field | Type | Description |
|---|---|---|
tier | string | Base plan code: free, plus, or pro. Business accounts report pro here because they include Pro access. In the UI, free is shown as Starter. |
tier_full | string | Full plan code, such as business for Business accounts. |
email | string | Account email |
limits
| Field | Type | Description |
|---|---|---|
monthly_requests | integer | Included credits per month. Business limits are per seat. |
overage_enabled | boolean | Whether requests continue after the included monthly amount and are billed as overage. |
watchlist_limit | integer | Max tickers in saved watchlist. Business watchlist capacity is per seat. |
history_days | integer | Days of historical data available |
usage
| Field | Type | Description |
|---|---|---|
monthly_requests_used | integer | Credits used this month |
monthly_requests_remaining | integer | Included monthly credits remaining. This is 0 after the included amount is exceeded. |
Example
GET /v1/account
{
"tier": "plus",
"tier_full": "plus",
"email": "dev@example.com",
"limits": {
"monthly_requests": 100000,
"overage_enabled": true,
"watchlist_limit": 20,
"history_days": 730
},
"usage": {
"monthly_requests_used": 142,
"monthly_requests_remaining": 99858
}
}