Claude Platform Docs

List Organization Rate Limits

RateLimitListPage beta().organization().rateLimits().list(RateLimitListParamsparams = RateLimitListParams.none(), RequestOptionsrequestOptions = RequestOptions.none())
GET/v1/organizations/rate_limits

List Messages API rate limits for your organization.

Each entry corresponds to one rate-limit group (either a model family or an API-surface category such as the Files API or Message Batches) and contains the set of limiter values that apply to it.

When limit is omitted, every matching entry is returned in a single page; when limit truncates the result, follow next_page to fetch the remaining entries.

Parameters
RateLimitListParams params
Optional<GroupType> groupType

Filter by group type.

BATCH("batch")
FILES("files")
MODEL_GROUP("model_group")
SKILLS("skills")
TOKEN_COUNT("token_count")
WEB_SEARCH("web_search")
Optional<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
Optional<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.

Optional<String> page

Opaque cursor from a previous response's next_page.

Returns
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.

List Organization Rate Limits

package com.anthropic.example;

import com.anthropic.client.AnthropicClient;
import com.anthropic.client.okhttp.AnthropicOkHttpClient;
import com.anthropic.models.beta.organization.ratelimits.RateLimitListPage;
import com.anthropic.models.beta.organization.ratelimits.RateLimitListParams;

public final class Main {
    private Main() {}

    public static void main(String[] args) {
        AnthropicClient client = AnthropicOkHttpClient.fromEnv();

        RateLimitListPage page = client.beta().organization().rateLimits().list();
    }
}
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}
Returns Examples
{
  "data": [
    {
      "id": "id",
      "group_type": "batch",
      "limits": [
        {
          "type": "type",
          "value": 0
        }
      ],
      "models": [
        "string"
      ],
      "type": "rate_limit"
    }
  ],
  "next_page": "next_page"
}