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

Spend Limits changed

api/admin/spend_limits

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+8added
Lines−8removed
From line 138 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits5to this page, all time

The whole hunk

from line 138, old and new numbered
/
lines
from line 138
138138curl https://api.anthropic.com/v1/organizations/spend_limits \
139139 -H 'Content-Type: application/json' \
140140 -H 'anthropic-version: 2023-06-01' \
141 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
141 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
142142 -d '{
143143 "amount": "50000",
144144 "scope": {
from line 278
278278```bash
279279curl https://api.anthropic.com/v1/organizations/spend_limits/$SPEND_LIMIT_ID \
280280 -H 'anthropic-version: 2023-06-01' \
281 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
281 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
282282```
283283 
284284#### Response (200)
from line 329
329329curl https://api.anthropic.com/v1/organizations/spend_limits/$SPEND_LIMIT_ID \
330330 -X DELETE \
331331 -H 'anthropic-version: 2023-06-01' \
332 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
332 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
333333```
334334 
335335#### Response (200)
from line 508
508508```bash
509509curl https://api.anthropic.com/v1/organizations/spend_limits/effective \
510510 -H 'anthropic-version: 2023-06-01' \
511 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
511 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
512512```
513513 
514514#### Response (200)
from line 1043
10431043```bash
10441044curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests \
10451045 -H 'anthropic-version: 2023-06-01' \
1046 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
1046 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
10471047```
10481048 
10491049##### Response (200)
from line 1350
13501350```bash
13511351curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID \
13521352 -H 'anthropic-version: 2023-06-01' \
1353 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
1353 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
13541354```
13551355 
13561356##### Response (200)
from line 1761
17611761curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/approve \
17621762 -H 'Content-Type: application/json' \
17631763 -H 'anthropic-version: 2023-06-01' \
1764 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
1764 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
17651765 -d '{
17661766 "amount": "50000",
17671767 "period": "monthly"
from line 2085
20852085curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/deny \
20862086 -H 'Content-Type: application/json' \
20872087 -H 'anthropic-version: 2023-06-01' \
2088 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
2088 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
20892089 -d '{}'
20902090```
20912091