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

Get Spend Limit

api/admin/spend_limits/retrieve

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/spend_limits/retrieve Changed · +24 / -25 lines

# Get Spend Limit ## Path parameters ## Returns ## Example ### Response (200) ## Get Spend Limit ### Path Parameters ### Returns ### Example #### Response

from line 1
----
-title: Get Spend Limit
-url: https://platform.claude.com/docs/en/api/admin/spend_limits/retrieve
----
+# Get Spend Limit
 
-## Get Spend Limit
+**GET** `/v1/organizations/spend_limits/{spend_limit_id}`
 
-**get** `/v1/organizations/spend_limits/{spend_limit_id}`
-
 Retrieve a spend limit by ID.
 
-### Path Parameters
+## Path parameters
 
 - `spend_limit_id: string`
 
   ID of the Spend Limit.
 
-### Returns
+## Returns
 
-- `SpendLimit object { id, amount, created_at, 5 more }`
+- `SpendLimit object`
 
   - `id: string`
 
from line 22
 
   - `created_at: string`
 
+    format: date-time
+
   - `currency: string`
 
     ISO 4217 code of the organization's billing currency; the unit for `amount`.
from line 36
 
     - `"weekly"`
 
-  - `scope: object { type, user_id }  or object { seat_tier, type }  or object { rbac_group_id, type }  or 2 more`
+  - `scope: object or object or object or 2 more`
 
-    - `User object { type, user_id }`
+    - `User object`
 
       - `type: "user"`
 
-        - `"user"`
+        default: user
 
       - `user_id: string`
 
-    - `SeatTier object { seat_tier, type }`
+    - `SeatTier object`
 
       - `seat_tier: string`
 
       - `type: "seat_tier"`
 
-        - `"seat_tier"`
+        default: seat_tier
 
-    - `RbacGroup object { rbac_group_id, type }`
+    - `RbacGroup object`
 
       - `rbac_group_id: string`
 
       - `type: "rbac_group"`
 
-        - `"rbac_group"`
+        default: rbac_group
 
-    - `OrganizationService object { service, type }`
+    - `OrganizationService object`
 
       - `service: string`
 
       - `type: "organization_service"`
 
-        - `"organization_service"`
+        default: organization_service
 
-    - `Organization object { type }`
+    - `Organization object`
 
       - `type: "organization"`
 
-        - `"organization"`
+        default: organization
 
   - `type: "spend_limit"`
 
-    - `"spend_limit"`
+    default: spend_limit
 
   - `updated_at: string`
 
-### Example
+    format: date-time
 
-```http
+## Example
+
+```bash
 curl https://api.anthropic.com/v1/organizations/spend_limits/$SPEND_LIMIT_ID \
     -H 'anthropic-version: 2023-06-01' \
     -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
 ```
 
-#### Response
+### Response (200)
 
 ```json
 {