Skip to main content
GET
/
api
/
user
/
history
/
{id}
/
thinking
Lazy-fetch the bulk thinking/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.

Path Parameters

id
string
required

History record ID

Response

Thinking array (may be empty)

success
boolean
Example:

true

thinking
object[]