Export Conversation Raw
Export a raw conversation file as markdown or JSON without importing.
Parses the session file using the same parsers as import, but returns formatted content directly instead of creating a thread.
Request Body
application/json
path*string
Path to conversation file
source*string
Source type: claude, codex, cursor, or opencode
format?string
Export format: markdown or json
Default
"markdown"Response Body
application/json
application/json
curl -X POST "http://127.0.0.1:14242/threads/conversations/export-raw" \ -H "Content-Type: application/json" \ -d '{ "path": "string", "source": "string" }'null{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}