Claude Platform Docs

Lister les limites de débit d'un espace de travail

$ ant beta:organization:workspaces:rate-limits list
GET/v1/organizations/workspaces/{workspace_id}/rate_limits

Listez les remplacements de limite de débit (rate limit) configurés pour un espace de travail.

Renvoie uniquement les groupes et types de limiteurs qui disposent d'un remplacement au niveau de l'espace de travail. Les groupes sans remplacement héritent des limites de l'organisation et ne sont pas listés ; utilisez GET /v1/organizations/rate_limits pour les consulter.

Lorsque limit est omis, toutes les entrées correspondantes sont renvoyées dans une seule page ; lorsque limit tronque le résultat, suivez next_page pour récupérer les entrées restantes.

Parameters
--workspace-id: string

The ID of the workspace.

--group-type: optional "batch" or "files" or "model_group" or 3 more

Filter by group type.

--limit: optional number

Maximum number of items to return per page. Ranges from 1 to 1000.

When omitted, every remaining entry is returned in a single page and next_page is null.

maximum1000
minimum1
--page: optional string

Opaque cursor from a previous response's next_page.

Returns
BetaWorkspaceRateLimitListResponse: object{ data, next_page }
data: array of BetaWorkspaceRateLimit { group_type, limits, models, 3 more }

Rate-limit entries for the workspace, one per group that has at least one override.

group_type: "batch" or "files" or "model_group" or 3 more

The kind of rate-limit group this entry represents. model_group entries apply to a family of models (listed in models); other values apply to an API-surface category and have models set to null.

One of the following:
"batch"
"files"
"model_group"
"skills"
"token_count"
"web_search"
limits: array of BetaWorkspaceRateLimitValue { 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: number

The organization-level value for the same limiter type, for reference. null when the organization has no limit configured for this limiter type.

type: string

The limiter type (for example, requests_per_minute or input_tokens_per_minute).

value: number

The workspace-level override value for this limiter type.

models: array of string

Model names this entry's limits apply to, including aliases. null when group_type is not "model_group".

rate_limit_id: string

The id of the RateLimit group this override applies to.

type: "workspace_rate_limit"

Object type. Always workspace_rate_limit for workspace rate-limit entries.

workspace_id: string

ID of the Workspace this override applies to.

next_page: string

Opaque cursor for the next page of results, or null when no entries remain beyond this response.

Lister les limites de débit d'un espace de travail
ant beta:organization:workspaces:rate-limits list \
  --api-key my-anthropic-api-key \
  --workspace-id workspace_id
Returns Examples
Response 200
{
  "data": [
    {
      "group_type": "batch",
      "limits": [
        {
          "org_limit": 0,
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "rate_limit_id": "rate_limit_id",
      "type": "workspace_rate_limit",
      "workspace_id": "workspace_id"
    }
  ],
  "next_page": "next_page"
}