APIQuota
An API usage quota defining the total request allowance for a consumer over a longer period, distinct from per-second or per-minute rate limits.
API GovernanceAPI ManagementAPI TestingPerformance TestingRate LimitingTesting
{
"$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-quota-schema.json",
"title": "APIQuota",
"description": "An API usage quota defining the total request allowance for a consumer over a longer period, distinct from per-second or per-minute rate limits.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the quota."
},
"consumer_id": {
"type": "string",
"description": "Identifier of the API consumer this quota applies to."
},
"api_name": {
"type": "string",
"description": "Name of the API this quota applies to."
},
"tier": {
"type": "string",
"description": "Subscription tier or plan this quota is associated with (e.g., free, basic, pro, enterprise)."
},
"total_limit": {
"type": "integer",
"minimum": 0,
"description": "Maximum total number of requests allowed in the quota period."
},
"used": {
"type": "integer",
"minimum": 0,
"description": "Number of requests used so far in the current quota period."
},
"remaining": {
"type": "integer",
"minimum": 0,
"description": "Number of requests remaining in the current quota period."
},
"period": {
"type": "string",
"enum": ["daily", "weekly", "monthly", "yearly"],
"description": "Duration of the quota period."
},
"period_start": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the current quota period started."
},
"period_end": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp when the current quota period ends."
},
"overage_enabled": {
"type": "boolean",
"description": "Whether requests beyond the quota are allowed (possibly at additional cost)."
},
"overage_rate": {
"type": "number",
"minimum": 0,
"description": "Cost per request for overage requests beyond the quota limit."
},
"percentage_used": {
"type": "number",
"minimum": 0,
"maximum": 100,
"description": "Percentage of quota consumed in the current period."
}
},
"required": ["id", "consumer_id", "total_limit", "period"]
}
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-quota"
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.