Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

List Workspace Rate Limits changed

api/admin/workspaces/rate_limits/list

Nearest release: v2.1.261, published 3 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+14added
Lines−2removed
From line 8 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

The whole hunk

from line 8, old and new numbered
/
lines
from line 8
88override. Groups without overrides inherit the organization limits and
99are not listed; use `GET /v1/organizations/rate_limits` to see those.
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## Path parameters
1216 
1317- `workspace_id: string`
from line 36
3236 
3337 - `"web_search"`
3438 
39- `limit: optional number`
40 
41 Maximum number of items to return per page. Ranges from `1` to `1000`.
42 
43 When omitted, every remaining entry is returned in a single page and `next_page` is `null`.
44 
45 maximum: 1000, minimum: 1
46 
3547- `page: optional string`
3648 
3749 Opaque cursor from a previous response's `next_page`.
from line 106
94106 
95107- `next_page: string or null`
96108 
97 Token to provide in as `page` in the subsequent request to retrieve the next page of data.
109 Opaque cursor for the next page of results, or `null` when no entries remain beyond this response.
98110 
99111## Example
100112 
from line 113
101113```bash
102114curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/rate_limits \
103115 -H 'anthropic-version: 2023-06-01' \
104 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
116 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
105117```
106118 
107119### Response (200)