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 capture · api

One read of Claude Developer Platform

122 pages moved out of 698 read.

api-20260904T210712Z

Pages moved 122 significant first
Pages read 698 in this capture
Captured 21:07 UTC
Corpus hash 87e3882bd4ef corpus-hash

What this read moved

101–122 of 122

This capture is too large to show at once. Changes 101-122 of 122 are below, significant first; the rest are on the following screens.

api/admin/spend_limits/create Changed · +1 / -1 lines

from line 136
136136curl https://api.anthropic.com/v1/organizations/spend_limits \
137137 -H 'Content-Type: application/json' \
138138 -H 'anthropic-version: 2023-06-01' \
139 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
139 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
140140 -d '{
141141 "amount": "50000",
142142 "scope": {

api/admin/spend_limits/delete Changed · +1 / -1 lines

from line 28
2828curl https://api.anthropic.com/v1/organizations/spend_limits/$SPEND_LIMIT_ID \
2929 -X DELETE \
3030 -H 'anthropic-version: 2023-06-01' \
31 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
31 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
3232```
3333 
3434### Response (200)

api/admin/spend_limits/increase_requests/approve Changed · +1 / -1 lines

from line 357
357357curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/approve \
358358 -H 'Content-Type: application/json' \
359359 -H 'anthropic-version: 2023-06-01' \
360 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
360 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
361361 -d '{
362362 "amount": "50000",
363363 "period": "monthly"

api/admin/spend_limits/increase_requests/deny Changed · +1 / -1 lines

from line 253
253253curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID/deny \
254254 -H 'Content-Type: application/json' \
255255 -H 'anthropic-version: 2023-06-01' \
256 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
256 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
257257 -d '{}'
258258```
259259 

api/admin/spend_limits/increase_requests/list Changed · +1 / -1 lines

from line 268
268268```bash
269269curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests \
270270 -H 'anthropic-version: 2023-06-01' \
271 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
271 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
272272```
273273 
274274### Response (200)

api/admin/spend_limits/increase_requests/retrieve Changed · +1 / -1 lines

from line 248
248248```bash
249249curl https://api.anthropic.com/v1/organizations/spend_limit_increase_requests/$SPEND_LIMIT_INCREASE_REQUEST_ID \
250250 -H 'anthropic-version: 2023-06-01' \
251 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
251 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
252252```
253253 
254254### Response (200)

api/admin/spend_limits/list_effective Changed · +1 / -1 lines

from line 165
165165```bash
166166curl https://api.anthropic.com/v1/organizations/spend_limits/effective \
167167 -H 'anthropic-version: 2023-06-01' \
168 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
168 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
169169```
170170 
171171### Response (200)

api/admin/spend_limits/retrieve Changed · +1 / -1 lines

from line 109
109109```bash
110110curl https://api.anthropic.com/v1/organizations/spend_limits/$SPEND_LIMIT_ID \
111111 -H 'anthropic-version: 2023-06-01' \
112 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
112 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
113113```
114114 
115115### Response (200)

api/admin/usage_report Changed · +2 / -2 lines

from line 263
263263```bash
264264curl https://api.anthropic.com/v1/organizations/usage_report/messages \
265265 -H 'anthropic-version: 2023-06-01' \
266 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
266 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
267267```
268268 
269269#### Response (200)
from line 489
489489```bash
490490curl https://api.anthropic.com/v1/organizations/usage_report/claude_code \
491491 -H 'anthropic-version: 2023-06-01' \
492 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
492 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
493493```
494494 
495495#### Response (200)

api/admin/usage_report/retrieve_claude_code Changed · +1 / -1 lines

from line 184
184184```bash
185185curl https://api.anthropic.com/v1/organizations/usage_report/claude_code \
186186 -H 'anthropic-version: 2023-06-01' \
187 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
187 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
188188```
189189 
190190### Response (200)

api/admin/usage_report/retrieve_messages Changed · +1 / -1 lines

from line 261
261261```bash
262262curl https://api.anthropic.com/v1/organizations/usage_report/messages \
263263 -H 'anthropic-version: 2023-06-01' \
264 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
264 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
265265```
266266 
267267### Response (200)

api/admin/users/delete Changed · +1 / -1 lines

from line 30
3030curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
3131 -X DELETE \
3232 -H 'anthropic-version: 2023-06-01' \
33 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
33 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
3434```
3535 
3636### Response (200)

api/admin/users/list Changed · +1 / -1 lines

from line 103
103103```bash
104104curl https://api.anthropic.com/v1/organizations/users \
105105 -H 'anthropic-version: 2023-06-01' \
106 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
106 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
107107```
108108 
109109### Response (200)

api/admin/users/retrieve Changed · +1 / -1 lines

from line 67
6767```bash
6868curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
6969 -H 'anthropic-version: 2023-06-01' \
70 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
70 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7171```
7272 
7373### Response (200)

api/admin/users/update Changed · +1 / -1 lines

from line 86
8686curl https://api.anthropic.com/v1/organizations/users/$USER_ID \
8787 -H 'Content-Type: application/json' \
8888 -H 'anthropic-version: 2023-06-01' \
89 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
89 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
9090 -d '{
9191 "role": "user"
9292 }'

api/admin/workspaces/members/create Changed · +1 / -1 lines

from line 68
6868curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members \
6969 -H 'Content-Type: application/json' \
7070 -H 'anthropic-version: 2023-06-01' \
71 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
71 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
7272 -d '{
7373 "user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q",
7474 "workspace_role": "workspace_admin"

api/admin/workspaces/members/delete Changed · +1 / -1 lines

from line 38
3838curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
3939 -X DELETE \
4040 -H 'anthropic-version: 2023-06-01' \
41 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
41 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
4242```
4343 
4444### Response (200)

api/admin/workspaces/members/list Changed · +1 / -1 lines

from line 79
7979```bash
8080curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members \
8181 -H 'anthropic-version: 2023-06-01' \
82 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
82 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
8383```
8484 
8585### Response (200)

api/admin/workspaces/members/retrieve Changed · +1 / -1 lines

from line 53
5353```bash
5454curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
5555 -H 'anthropic-version: 2023-06-01' \
56 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
56 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
5757```
5858 
5959### Response (200)

api/admin/workspaces/members/update Changed · +1 / -1 lines

from line 70
7070curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/members/$USER_ID \
7171 -H 'Content-Type: application/json' \
7272 -H 'anthropic-version: 2023-06-01' \
73 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN" \
73 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN" \
7474 -d '{
7575 "workspace_role": "workspace_admin"
7676 }'

api/admin/workspaces/service_accounts/list Changed · +3 / -1 lines

from line 2
22 
33**GET** `/v1/organizations/workspaces/{workspace_id}/service_accounts`
44 
5**Requires an OAuth access token with the `org:admin` scope**, from `ant auth login --scope org:admin` or a workload identity federation rule; Admin API keys are not accepted. See [Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
6 
57List the service accounts that are members of a workspace.
68 
79Each entry includes the service account's `workspace_role`. Use `limit`
from line 86
8486```bash
8587curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/service_accounts \
8688 -H 'anthropic-version: 2023-06-01' \
87 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
89 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
8890```
8991 
9092### Response (200)

api/admin/workspaces/service_accounts/retrieve Changed · +3 / -1 lines

from line 2
22 
33**GET** `/v1/organizations/workspaces/{workspace_id}/service_accounts/{service_account_id}`
44 
5**Requires an OAuth access token with the `org:admin` scope**, from `ant auth login --scope org:admin` or a workload identity federation rule; Admin API keys are not accepted. See [Manage WIF with the Admin API](/docs/en/manage-claude/wif-admin-api).
6 
57Retrieve a service account's membership in a workspace.
68 
79Returns the membership record, including the service account's
from line 72
7072```bash
7173curl https://api.anthropic.com/v1/organizations/workspaces/$WORKSPACE_ID/service_accounts/$SERVICE_ACCOUNT_ID \
7274 -H 'anthropic-version: 2023-06-01' \
73 -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
75 -H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"
7476```
7577 
7678### Response (200)