v1

latestOpenAPI 3.0.32026-07-213841124.9 KB
Technical Endpoints

Key Usage Info

Returns usage statistics for the current API key. The response includes how many requests were allocated in total, how many remain, and the time when the current request balance becomes invalid (either the subscription period ends or the one-time package expires).

Use cases:

Developers checking quota before batch jobs; SaaS dashboards showing API usage in account settings; automation systems pausing tasks when quota is low; monitoring tools tracking consumption; billing/support teams answering “why requests stopped” questions.

get/key-usage-info

Response

OK

key_requestsinteger
remaining_requestsinteger
total_requestsinteger
valid_untilstring

Example response

{
  "key_requests": 100,
  "remaining_requests": 100,
  "total_requests": 1000,
  "valid_until": "2021-01-01T00:00:00Z"
}