v3

latestOpenAPI 3.1.02026-07-311725107.3 KB
Service

Get rate limit status

Retrieve the rate limit status for the authenticated token. Rate limits use a one-hour window; the current limit and usage are also reported on every response via the x-ratelimit-* headers.

get/rate_limit

Response

Rate limit status for the authenticated user

Example response

{
  "resources": {
    "core": {
      "limit": 5000,
      "used": 10,
      "remaining": 4990,
      "reset": 1734567890
    }
  }
}