v3

latestOpenAPI 3.0.32026-08-02415689.9 KB
Technical Endpoints

API Key Usage

Returns usage statistics for the current API key: total allocated requests, remaining balance, and the expiration date of the current request quota. No parameters required; the key is read from the ApiKey header.

get/key-usage-info

Response

OK

key_requestsinteger

Number of requests allocated for the current period.

remaining_requestsinteger

Number of requests remaining.

total_requestsinteger

Total requests used across all periods.

valid_untilstring

Expiration date of the current request balance in ISO 8601 format.

Example response

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