Skip to main content
GET
/
v1
/
rate-limits
Check your rate limit status
curl --request GET \
  --url https://api.acaas.example.com/v1/rate-limits \
  --header 'X-API-Key: <api-key>'
{
  "requests_remaining": 123,
  "limit": 123,
  "resets_in_seconds": 123,
  "status": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://acaas.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Response

200 - application/json

Successful Response

Current rate limit status for the caller.

requests_remaining
integer
required

Requests left in the current window.

limit
integer
required

Total requests allowed per window.

resets_in_seconds
integer
required

Seconds until the window resets.

status
string
required

One of: ok, approaching_limit, at_limit.