Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

List Organization Rate Limits

api/admin/rate_limits/list

first seen The page's own history The capture it came from

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/list Changed · +10 / -15 lines

# List Organization Rate Limits ## Query parameters ## Returns ## Example ### Response (200) ## List Organization Rate Limits ### Query Parameters ### Returns ### Example #### Response

from line 1
----
-title: List Organization Rate Limits
-url: https://platform.claude.com/docs/en/api/admin/rate_limits/list
----
+# List Organization Rate Limits
 
-## List Organization Rate Limits
+**GET** `/v1/organizations/rate_limits`
 
-**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
from line 8
 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 34
 
   Opaque cursor from a previous response's `next_page`.
 
-### Returns
+## 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 60
 
     - `"web_search"`
 
-  - `limits: array of object { type, value }`
+  - `limits: array of object`
 
     The limiter values that apply to this group.
 
from line 80
 
     Object type. Always `rate_limit` for organization rate-limit entries.
 
-    - `"rate_limit"`
+    default: rate_limit
 
 - `next_page: string or null`
 
   Token to provide in as `page` in the subsequent request to retrieve the next page of data.
 
-### Example
+## 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
 {