Skip to main content
Account endpoints let you monitor API usage and credit consumption. These endpoints are free and do not consume credits.

Endpoints

MethodPathDescriptionCredits
GET/v1/usageAggregated usage statistics0
GET/v1/creditsCredit balance summary0

Usage statistics

The usage endpoint provides:
  • Request counts (total, successful, failed) per API key
  • Credit consumption per key
  • Custom date range filtering with start_date and end_date

Credit summary

The credits endpoint returns:
  • Current credit balance across all keys
  • Credit limits per plan
  • Next reset date
These endpoints are free — use them to build dashboards or set up alerting when credits are running low.

Credits

Credit costs per endpoint and plan details.

Rate limits

Request limits by plan and retry strategies.

Authentication

Set up your API key for account access.

Errors

Error codes and response format.

Frequently asked questions

No. Both GET /v1/usage and GET /v1/credits are free. You can call them as often as you need without affecting your credit balance. They’re designed for monitoring, so feel free to poll them from dashboards or alerting systems.
Usage data updates in real time. Each API call is reflected in the /v1/usage response immediately. Credit balances from /v1/credits also update instantly after every request, so you always see an accurate count of remaining credits.
The API doesn’t have built-in alerting, but you can build it yourself. Poll GET /v1/credits on a schedule (e.g., hourly) and trigger a notification when the remaining balance drops below your threshold. Since this endpoint is free, there’s no cost to frequent polling.