The whole hunk
from line 17, old and new numbered
/
lines
from line 17
1717
1818## Headers
1919
20- `"anthropic-version": optional string`
21
22 The version of the Claude API you want to use.
23
24 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
25
2620- `"x-api-key": optional string`
2721
2822## Example
from line 23
2923
3024```bash
3125curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID/content \
26 -H 'anthropic-version: 2023-06-01' \
3227 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
3328```
3429