Claude Platform Docs

Rate Limits

List Organization Rate Limits
RateLimitListPage beta().organization().rateLimits().list(RateLimitListParamsparams = RateLimitListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/organizations/rate_limits
Models
class BetaOrganizationRateLimit:
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.

One of the following:
BATCH("batch")
FILES("files")
MODEL_GROUP("model_group")
SKILLS("skills")
TOKEN_COUNT("token_count")
WEB_SEARCH("web_search")

The limiter values that apply to this group.

String type

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

long value

The configured limit value for this limiter type.

Optional<List<String>> models

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

JsonValue type "rate_limit"constant

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

class BetaOrganizationRateLimitValue:
String type

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

long value

The configured limit value for this limiter type.