Claude Platform Docs

조직 속도 제한 목록 조회

GET/v1/organizations/rate_limits

조직의 Messages API 속도 제한(rate limit)을 나열합니다.

각 항목은 하나의 속도 제한 그룹(모델 패밀리 또는 Files API나 Message Batches 같은 API 표면 카테고리)에 해당하며, 해당 그룹에 적용되는 제한 값 집합을 포함합니다.

limit을 생략하면 일치하는 모든 항목이 단일 페이지로 반환됩니다. limit으로 인해 결과가 잘린 경우, next_page를 따라 나머지 항목을 가져오세요.

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"
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
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 BetaOrganizationRateLimit { 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 BetaOrganizationRateLimitValue { 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

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

조직 속도 제한 목록 조회
curl https://api.anthropic.com/v1/organizations/rate_limits \
    -H 'anthropic-version: 2023-06-01' \
    -H "X-Api-Key: $ANTHROPIC_API_KEY"
Returns Examples
Response 200
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}