Claude Platform Docs

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

RateLimitListPage Beta.Organization.RateLimits.List(parameters, cancellationToken = default)
GET/v1/organizations/rate_limits

組織の Messages API のレート制限(rate limit)を一覧表示します。

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

limit を省略すると、一致するすべてのエントリが 1 ページで返されます。limit によって結果が切り詰められた場合は、next_page をたどって残りのエントリを取得してください。

Parameters
RateLimitListParams parameters
GroupType? groupType

Filter by group type.

Batch("batch")
Files("files")
ModelGroup("model_group")
Skills("skills")
TokenCount("token_count")
WebSearch("web_search")
long? limit

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
string? model

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.

string? page

Opaque cursor from a previous response's next_page.

Returns
class BetaOrganizationRateLimit { Type = "rate_limit"; ID; GroupType; /* 2 more */ }
組織のレート制限の一覧を取得
RateLimitListParams parameters = new();

var page = await client.Beta.Organization.RateLimits.List(parameters);
await foreach (var item in page.Paginate())
{
    Console.WriteLine(item);
}
Returns Examples
Response 200
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}