The whole hunk
from line 52, old and new numbered
/
lines
from line 52
5252
5353#### Headers
5454
55- `"anthropic-version": optional string`
56
57 The version of the Claude API you want to use.
58
59 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
60
6155- `"x-api-key": optional string`
6256
6357#### Returns
from line 118
124118
125119```bash
126120curl https://api.anthropic.com/v1/compliance/apps/sessions/local \
121 -H 'anthropic-version: 2023-06-01' \
127122 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
128123```
129124
from line 161
166161
167162#### Headers
168163
169- `"anthropic-version": optional string`
170
171 The version of the Claude API you want to use.
172
173 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
174
175164- `"x-api-key": optional string`
176165
177166#### Returns
from line 219
230219
231220```bash
232221curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID \
222 -H 'anthropic-version: 2023-06-01' \
233223 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
234224```
235225
from line 297
307297
308298#### Headers
309299
310- `"anthropic-version": optional string`
311
312 The version of the Claude API you want to use.
313
314 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
315
316300- `"x-api-key": optional string`
317301
318302#### Returns
from line 442
458442 A transcript marker generated by the endpoint rather than sent by
459443 either party during the session. Marker messages indicate that the
460444 prompt history diverged from what was captured, that the request's
461 `system` field was present but is not shown, or that
462 prompt-carried history was suppressed because the session spans the
463 child organization's retention boundary and those turns cannot be
464 placed against it (the marker's text names the cause). Markers that
465 report a mismatch with captured history can result from normal request
466 or client processing, not only client modification.
445 `system` field was present but is not shown, or that earlier turns
446 that a request re-sent as history were withheld because they cannot
447 be dated against the child organization's data-retention period
448 (only for organizations with a finite retention period; the request's
449 new user input after its last assistant turn is not affected). The
450 marker's text names the cause. Markers that report a mismatch with
451 captured history can result from normal request or client processing,
452 not only client modification.
467453
468454 - `type: "synthetic_marker"`
469455
from line 525
539525
540526```bash
541527curl https://api.anthropic.com/v1/compliance/apps/sessions/local/$LOCAL_SESSION_ID/messages \
528 -H 'anthropic-version: 2023-06-01' \
542529 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
543530```
544531
from line 647
660647
661648#### Headers
662649
663- `"anthropic-version": optional string`
664
665 The version of the Claude API you want to use.
666
667 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
668
669650- `"x-api-key": optional string`
670651
671652#### Returns
from line 721
740721
741722```bash
742723curl https://api.anthropic.com/v1/compliance/apps/sessions/remote \
724 -H 'anthropic-version: 2023-06-01' \
743725 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
744726```
745727
from line 817
835817
836818#### Headers
837819
838- `"anthropic-version": optional string`
839
840 The version of the Claude API you want to use.
841
842 Read more about versioning and our version history [here](https://platform.claude.com/docs/en/api/versioning).
843
844820- `"x-api-key": optional string`
845821
846822#### Returns
from line 1011
10351011
10361012```bash
10371013curl https://api.anthropic.com/v1/compliance/apps/sessions/remote/$CLAUDE_REMOTE_SESSION_ID/messages \
1014 -H 'anthropic-version: 2023-06-01' \
10381015 -H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"
10391016```
10401017