Claude Platform Docs

속도 제한

워크스페이스 속도 제한 목록 조회
$client->beta->organization->workspaces->rateLimits->list(string workspaceID, ?GroupType groupType, ?int limit, ?string page): PageCursor<BetaWorkspaceRateLimit>
GET/v1/organizations/workspaces/{workspace_id}/rate_limits

워크스페이스에 구성된 속도 제한 재정의 목록을 조회합니다.

Models
class BetaWorkspaceRateLimit { $type = 'workspace_rate_limit'; $groupType; $limits; /* 3 more */ }
"workspace_rate_limit" type

Object type. Always workspace_rate_limit for workspace rate-limit entries.

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 overridden for this group in this workspace. Limiter types without a workspace override are omitted and inherit the organization value.

?list<string> models

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

string rateLimitID

The id of the RateLimit group this override applies to.

string workspaceID

ID of the Workspace this override applies to.

class BetaWorkspaceRateLimitValue { $type; $orgLimit; $value; }
string type

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

?int orgLimit

The organization-level value for the same limiter type, for reference. null when the organization has no limit configured for this limiter type.

int value

The workspace-level override value for this limiter type.