Current plan usage
GET/usage
Current plan usage
Request
Query Parameters
api_key stringrequired
Responses
- 200
JSON describing your current plan usage.
- application/json
- Schema
- Example (from schema)
Schema
total numberrequired
The total number of requests permitted within the current billing plan period.
available numberrequired
The number of requests remaining until the end of the current period.
used numberrequired
The number of requests that have been successfully executed.
concurrency object
limit numberrequired
The total number of concurrent requests permitted.
remaining numberrequired
The number of concurrent requests currently available.
{
"total": 1000,
"available": 810,
"used": 190,
"concurrency": {
"limit": 5,
"remaining": 4
}
}
Loading...