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