List Workspace Rate Limits ​
get /v1/organizations/workspaces/{workspace_id}/rate_limits
List rate-limit overrides configured for a workspace.
Returns only the groups and limiter types that have a workspace-level override. Groups without overrides inherit the organization limits and are not listed; use GET /v1/organizations/rate_limits to see those.
Path Parameters ​
workspace_id: stringThe ID of the workspace.
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"
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 workspace, one per group that has at least one override.
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 { org_limit, type, value }The limiter values overridden for this group in this workspace. Limiter types without a workspace override are omitted and inherit the organization value.
org_limit: numberThe organization-level value for the same limiter type, for reference.
nullwhen the organization has no limit configured for this limiter type.type: stringThe limiter type (for example,
requests_per_minuteorinput_tokens_per_minute).value: numberThe workspace-level override value for this limiter type.
models: array of stringModel names this entry's limits apply to, including aliases.
nullwhengroup_typeis not"model_group".type: "workspace_rate_limit"Object type. Always
workspace_rate_limitfor workspace rate-limit entries."workspace_rate_limit"
next_page: stringToken to provide in as
pagein the subsequent request to retrieve the next page of data.
Example ​
http
curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_ADMIN_API_KEY"Response ​
json
{
"data": [
{
"group_type": "model_group",
"limits": [
{
"org_limit": 0,
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "workspace_rate_limit"
}
],
"next_page": "next_page"
}