Skip to main content
GET
/
api
/
admin
/
history
/
{id}
/
thinking
Lazy-fetch the bulk thinking/reasoning array for a single History record (admin)
curl --request GET \
  --url https://pria.praxislxp.com/api/admin/history/{id}/thinking
{
  "success": true,
  "thinking": [
    {
      "id": "<string>",
      "round": 123,
      "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
thinking
object[]