The whole hunk
from line 21, old and new numbered
/
lines
from line 21
2121
2222### Headers
2323
24- `"anthropic-version": optional string`
25
26 The version of the Claude API you want to use.
27
28 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
29
3024- `"x-api-key": optional string`
3125
3226### Returns
from line 59
6559
6660```bash
6761curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID \
62 -H 'anthropic-version: 2023-06-01' \
6863 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
6964```
7065
from line 91
9691
9792### Headers
9893
99- `"anthropic-version": optional string`
100
101 The version of the Claude API you want to use.
102
103 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
104
10594- `"x-api-key": optional string`
10695
10796### Example
from line 97
10897
10998```bash
11099curl https://api.anthropic.com/v1/compliance/apps/chats/generated-files/$CLAUDE_GEN_FILE_ID/content \
100 -H 'anthropic-version: 2023-06-01' \
111101 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
112102```
113103