RateLimitResponse

The HTTP response returned by an API when a rate limit is exceeded, including error details and retry guidance.

API GovernanceAPI ManagementAPI TestingPerformance TestingRate LimitingTesting

Properties

Name Type Description
status_code integer HTTP status code of the rate limit response (typically 429).
error string Error code or name (e.g., RATE_LIMIT_EXCEEDED, TOO_MANY_REQUESTS).
message string Human-readable error message explaining the rate limit violation.
limit integer The rate limit that was exceeded.
remaining integer Remaining requests allowed in the current window (typically 0 when rate limited).
reset_at string ISO 8601 timestamp when the rate limit window resets.
retry_after_seconds integer Number of seconds to wait before retrying the request.
headers object Rate limit related response headers.
documentation_url string URL to documentation about rate limits for this API.
View JSON Schema on GitHub

JSON Schema

test-rate-limit-check-rate-limit-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/test-rate-limit-check/refs/heads/main/json-schema/test-rate-limit-check-rate-limit-response-schema.json",
  "title": "RateLimitResponse",
  "description": "The HTTP response returned by an API when a rate limit is exceeded, including error details and retry guidance.",
  "type": "object",
  "properties": {
    "status_code": {
      "type": "integer",
      "minimum": 400,
      "maximum": 599,
      "description": "HTTP status code of the rate limit response (typically 429)."
    },
    "error": {
      "type": "string",
      "description": "Error code or name (e.g., RATE_LIMIT_EXCEEDED, TOO_MANY_REQUESTS)."
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message explaining the rate limit violation."
    },
    "limit": {
      "type": "integer",
      "description": "The rate limit that was exceeded."
    },
    "remaining": {
      "type": "integer",
      "minimum": 0,
      "description": "Remaining requests allowed in the current window (typically 0 when rate limited)."
    },
    "reset_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the rate limit window resets."
    },
    "retry_after_seconds": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of seconds to wait before retrying the request."
    },
    "headers": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Rate limit related response headers."
    },
    "documentation_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to documentation about rate limits for this API."
    }
  },
  "required": ["status_code", "error", "message"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/test-rate-limit-check-rate-limit-response"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.