Rate Limits
List Organization Rate Limits
get /v1/organizations/rate_limits
List Messages API rate limits for your organization.
Each entry corresponds to one rate-limit group (either a model family or an API-surface category such as the Files API or Message Batches) and contains the set of limiter values that apply to it.
Query Parameters
-
group_type: optional "model_group" or "batch" or "token_count" or 3 moreFilter by group type.
-
"model_group" -
"batch" -
"token_count" -
"files" -
"skills" -
"web_search"
-
-
model: optional stringFilter to the single entry containing this model. Accepts full model names and aliases. Returns 404 if the model is not found or has no rate limits for this organization.
-
page: optional stringOpaque cursor from a previous response's
next_page.
Returns
-
data: array of object { group_type, limits, models, type }Rate-limit entries for the organization, one per group.
-
group_type: "model_group" or "batch" or "token_count" or 3 moreThe kind of rate-limit group this entry represents.
model_groupentries apply to a family of models (listed inmodels); other values apply to an API-surface category and havemodelsset tonull.-
"model_group" -
"batch" -
"token_count" -
"files" -
"skills" -
"web_search"
-
-
limits: array of object { type, value }The limiter values that apply to this group.
-
type: stringThe limiter type (for example,
requests_per_minuteorinput_tokens_per_minute). -
value: numberThe configured limit value for this limiter type.
-
-
models: array of stringModel names this entry's limits apply to, including aliases.
nullwhengroup_typeis not"model_group". -
type: "rate_limit"Object type. Always
rate_limitfor organization rate-limit entries."rate_limit"
-
-
next_page: stringToken to provide in as
pagein the subsequent request to retrieve the next page of data.
Example
curl https://api.anthropic.com/v1/organizations/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_ADMIN_API_KEY"
Response
{
"data": [
{
"group_type": "model_group",
"limits": [
{
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "rate_limit"
}
],
"next_page": "next_page"
}
Domain Types
Rate Limit List Response
-
RateLimitListResponse object { data, next_page }-
data: array of object { group_type, limits, models, type }Rate-limit entries for the organization, one per group.
-
group_type: "model_group" or "batch" or "token_count" or 3 moreThe kind of rate-limit group this entry represents.
model_groupentries apply to a family of models (listed inmodels); other values apply to an API-surface category and havemodelsset tonull.-
"model_group" -
"batch" -
"token_count" -
"files" -
"skills" -
"web_search"
-
-
limits: array of object { type, value }The limiter values that apply to this group.
-
type: stringThe limiter type (for example,
requests_per_minuteorinput_tokens_per_minute). -
value: numberThe configured limit value for this limiter type.
-
-
models: array of stringModel names this entry's limits apply to, including aliases.
nullwhengroup_typeis not"model_group". -
type: "rate_limit"Object type. Always
rate_limitfor organization rate-limit entries."rate_limit"
-
-
next_page: stringToken to provide in as
pagein the subsequent request to retrieve the next page of data.
-