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

Increase Requests changed

api/admin/spend_limits/increase_requests

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+4added
Lines−4removed
From line 270 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 270, old and new numbered
/
lines
from line 270
270270```bash
271271curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests \
272272 -H 'anthropic-version: 2023-06-01' \
273 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
273 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
274274```
275275 
276276#### Response (200)
from line 577
577577```bash
578578curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID \
579579 -H 'anthropic-version: 2023-06-01' \
580 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
580 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
581581```
582582 
583583#### Response (200)
from line 988
988988curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/approve \
989989 -H 'Content-Type: application/json' \
990990 -H 'anthropic-version: 2023-06-01' \
991 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
991 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
992992 -d '{
993993 "amount": "50000",
994994 "period": "monthly"
from line 1312
13121312curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/deny \
13131313 -H 'Content-Type: application/json' \
13141314 -H 'anthropic-version: 2023-06-01' \
1315 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
1315 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
13161316 -d '{}'
13171317```
13181318