The whole hunk
from line 8, old and new numbered
/
lines
from line 8
88or an API-surface category such as the Files API or Message Batches)
99and contains the set of limiter values that apply to it.
1010
11When `limit` is omitted, every matching entry is returned in a single
12page; when `limit` truncates the result, follow `next_page` to fetch
13the remaining entries.
14
1115## Query parameters
1216
1317- `group_type: optional "batch" or "files" or "model_group" or 3 more`
from line 30
2630
2731 - `"web_search"`
2832
33- `limit: optional number`
34
35 Maximum number of items to return per page. Ranges from `1` to `1000`.
36
37 When omitted, every remaining entry is returned in a single page and `next_page` is `null`.
38
39 maximum: 1000, minimum: 1
40
2941- `model: optional string`
3042
3143 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.
from line 96
8496
8597- `next_page: string or null`
8698
87 Token to provide in as `page` in the subsequent request to retrieve the next page of data.
99 Opaque cursor for the next page of results, or `null` when no entries remain beyond this response.
88100
89101## Example
90102
from line 103
91103```bash
92104curl https://api.anthropic.com/v1/organizations/rate_limits \
93105 -H 'anthropic-version: 2023-06-01' \
94 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
106 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
95107```
96108
97109### Response (200)