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 速率限制。

Models
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".

class OrganizationRateLimitValue { $type; $value; }
string type

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

int value

The configured limit value for this limiter type.