One change
Rate Limits
api/admin/rate_limits
Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.
api/admin/rate_limits Changed · +12 / -17 lines
### Query parameters #### Response (200) ## Domain types ### Query Parameters #### Response ## Domain Types
from line 1
---- -title: Rate Limits -url: https://platform.claude.com/docs/en/api/admin/rate_limits ---- - # Rate Limits ## List Organization Rate Limits -**get** `/v1/organizations/rate_limits` +**GET** `/v1/organizations/rate_limits` List Messages API rate limits for your organization.
from line 10
or an API-surface category such as the Files API or Message Batches) and contains the set of limiter values that apply to it. -### Query Parameters +### Query parameters - `group_type: optional "batch" or "files" or "model_group" or 3 more`
from line 38
### Returns -- `data: array of object { id, group_type, limits, 2 more }` +- `data: array of object` Rate-limit entries for the organization, one per group.
from line 62
- `"web_search"` - - `limits: array of object { type, value }` + - `limits: array of object` The limiter values that apply to this group.
from line 82
Object type. Always `rate_limit` for organization rate-limit entries. - - `"rate_limit"` + default: rate_limit - `next_page: string or null`
from line 90
### Example -```http +```bash curl https://api.anthropic.com/v1/organizations/rate_limits \ -H 'anthropic-version: 2023-06-01' \ -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" ``` -#### Response +#### Response (200) ```json {
from line 120
} ``` -## Domain Types +## Domain types ### Rate Limit List Response -- `RateLimitListResponse object { data, next_page }` +- `RateLimitListResponse object` - - `data: array of object { id, group_type, limits, 2 more }` + - `data: array of object` Rate-limit entries for the organization, one per group.
from line 150
- `"web_search"` - - `limits: array of object { type, value }` + - `limits: array of object` The limiter values that apply to this group.
from line 170
Object type. Always `rate_limit` for organization rate-limit entries. - - `"rate_limit"` + default: rate_limit - `next_page: string or null`