List conversation messages
Replay messages for one API-created conversation, including text and full Manyfold content blocks.
GET
/api/v1/conversations/{session_id}/messages - Auth
- Bearer API token with chat.completions or api.full.
- Quota
- Read-only endpoint; not counted against monthly API request quota.
Parameters
| Parameters | Required | Description |
|---|---|---|
| session_id | Required | Manyfold session id returned as x-session-id or metadata.session_id. |
| limit | Optional | 1-100 results. Defaults to 20. |
| after | Optional | Object id from first_id or last_id for cursor pagination. |
| order | Optional | desc by default. Use asc for chronological replay. |
Request
curl "https://api.manyfold.ai/api/v1/conversations/cts_your_session_id/messages?order=asc" \
-H "Authorization: Bearer $MF_API_TOKEN" Response
- content is an OpenAI-compatible message parts array.
- content_blocks preserves Manyfold-specific transcript details such as tool calls.