Claude Platform Docs

組織のレート制限の一覧を取得

GET/v1/organizations/rate_limits

組織のMessages APIのレート制限の一覧を取得します。

各エントリは1つのレート制限グループ(モデルファミリー、またはFiles APIやMessage BatchesなどのAPIサーフェスカテゴリ)に対応し、それに適用されるリミッター値のセットを含みます。

Query parameters
group_type: optional "batch" or "files" or "model_group" or 3 more

Filter by group type.

One of the following:
"batch"
"files"
"model_group"
"skills"
"token_count"
"web_search"
model: optional string

Filter 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 string

Opaque cursor from a previous response's next_page.

Returns
data: array of object{ id, group_type, limits, 2 more }

Rate-limit entries for the organization, one per group.

id: string

Stable identifier for this rate-limit group within the organization.

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 object{ type, value }

The limiter values that apply to this group.

type: string

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

value: number

The configured limit value for this limiter type.

models: array of string or null

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

type: "rate_limit"

Object type. Always rate_limit for organization rate-limit entries.

defaultrate_limit
next_page: string or null

Token to provide in as page in the subsequent request to retrieve the next page of data.

組織のレート制限の一覧を取得
cURL
curl https://api.anthropic.com/v1/organizations/rate_limits \
    -H 'anthropic-version: 2023-06-01' \
    -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
Returns Examples
Response 200
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}