The whole hunk
from line 24, old and new numbered
/
lines
from line 24
2424
2525### Headers
2626
27- `"anthropic-version": optional string`
28
29 The version of the Claude API you want to use.
30
31 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
32
3327- `"x-api-key": optional string`
3428
3529### Returns
from line 66
7266
7367```bash
7468curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID \
69 -H 'anthropic-version: 2023-06-01' \
7570 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
7671```
7772
from line 101
106101
107102### Headers
108103
109- `"anthropic-version": optional string`
110
111 The version of the Claude API you want to use.
112
113 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
114
115104- `"x-api-key": optional string`
116105
117106### Example
from line 107
118107
119108```bash
120109curl https://api.anthropic.com/v1/compliance/apps/artifacts/$ARTIFACT_VERSION_ID/content \
110 -H 'anthropic-version: 2023-06-01' \
121111 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
122112```
123113