Claude Platform Docs

Список ограничений скорости организации

$client->beta->organization->rateLimits->list(?GroupType groupType, ?int limit, ?string model, ?string page): PageCursor<OrganizationRateLimit>
GET/v1/organizations/rate_limits

Выводит список ограничений скорости Messages API для вашей организации.

Каждая запись соответствует одной группе ограничений скорости (либо семейству моделей, либо категории поверхности API, например Files API или Message Batches) и содержит набор значений ограничителей, которые к ней применяются.

Если limit не указан, все подходящие записи возвращаются на одной странице; если limit усекает результат, используйте next_page, чтобы получить оставшиеся записи.

Parameters
groupType?:optional GroupType

Filter by group type.

limit?:optional int

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.

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
class OrganizationRateLimit { $type = 'rate_limit'; $id; $groupType; /* 2 more */ }
"rate_limit" type

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

string id

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

GroupType groupType

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.

The limiter values that apply to this group.

?list<string> models

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

Список ограничений скорости организации
<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'my-anthropic-api-key');

$page = $client->beta->organization->rateLimits->list(
  groupType: 'batch', limit: 1, model: 'model', page: 'page'
);

var_dump($page);
Returns Examples
Response 200
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}