Claude Platform Docs

列出組織速率限制

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

列出您組織的 Messages API 速率限制。

每個項目對應一個速率限制群組(模型系列,或 API 介面類別,例如 Files API 或 Message Batches),並包含適用於該群組的一組限制器值。

省略 limit 時,所有符合的項目會在單一頁面中傳回;當 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"
}