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

Code changed

api/compliance/code

Nearest release: v2.1.272, published 5 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+3added
Lines−18removed
From line 76 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

The whole hunk

from line 76, old and new numbered
/
lines
from line 76
7676 
7777#### Headers
7878 
79- `"anthropic-version": optional string`
80 
81 The version of the Claude API you want to use.
82 
83 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
84 
8579- `"x-api-key": optional string`
8680 
8781#### Returns
from line 165
171165 
172166```bash
173167curl https://api.anthropic.com/v1/compliance/apps/code/artifacts \
168 -H 'anthropic-version: 2023-06-01' \
174169 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
175170```
176171 
from line 228
233228 
234229#### Headers
235230 
236- `"anthropic-version": optional string`
237 
238 The version of the Claude API you want to use.
239 
240 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
241 
242231- `"x-api-key": optional string`
243232 
244233#### Example
from line 234
245234 
246235```bash
247236curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID/versions/$VERSION_ID \
237 -H 'anthropic-version: 2023-06-01' \
248238 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
249239```
250240 
from line 259
269259 
270260#### Headers
271261 
272- `"anthropic-version": optional string`
273 
274 The version of the Claude API you want to use.
275 
276 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
277 
278262- `"x-api-key": optional string`
279263 
280264#### Returns
from line 278
294278```bash
295279curl https://api.anthropic.com/v1/compliance/apps/code/artifacts/$ARTIFACT_ID \
296280 -X DELETE \
281 -H 'anthropic-version: 2023-06-01' \
297282 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
298283```
299284