Lazy-fetch the bulk thinking and reasoning array for a single History record
curl --request GET \
--url https://pria.praxislxp.com/api/user/history/{id}/thinking{
"success": true,
"thinking": [
{
"id": "round-0",
"round": 0,
"text": "<string>",
"signature": "<string>",
"model": "<string>",
"durationMs": 123
}
]
}User History
Lazy-fetch the bulk thinking and reasoning array for a single History record
List endpoints (/api/user/histories, /api/user/favorites) project out the
bulk thinking text and expose only hasThinking (boolean) + thinkingCount
(number of reasoning rounds) for the UI summary badge. This endpoint returns
the full thinking array on demand, fired by the UI when the user expands the
lightbulb <details> block.
GET
/
api
/
user
/
history
/
{id}
/
thinking
Lazy-fetch the bulk thinking and reasoning array for a single History record
curl --request GET \
--url https://pria.praxislxp.com/api/user/history/{id}/thinking{
"success": true,
"thinking": [
{
"id": "round-0",
"round": 0,
"text": "<string>",
"signature": "<string>",
"model": "<string>",
"durationMs": 123
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.praxis-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?
Get checkout session resultLazy-fetch the structured RAG-KAG retrieval segments for a single History record
⌘I