Skip to main content
GET
/
api
/
v1
/
admin
/
orchestration
/
threads
/
{thread_id}
Get Thread
curl --request GET \
  --url https://api.example.com/api/v1/admin/orchestration/threads/{thread_id} \
  --header 'Authorization: Bearer <token>'
{
  "thread_id": "<string>",
  "graph_name": "<string>",
  "status": "<string>",
  "current_node": "<string>",
  "started_at": "<string>",
  "last_updated_at": "<string>",
  "pending_interrupt": false,
  "summary": {},
  "state": {},
  "history": [
    {
      "checkpoint_id": "<string>",
      "node_name": "<string>",
      "timestamp": "<string>",
      "is_interrupt": false,
      "is_error": false
    }
  ],
  "topology_mermaid": ""
}

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

thread_id
string
required

Response

Successful Response

Full thread view: the latest sanitised state + checkpoint history.

state is the recursively-sanitised channel-values payload (secrets stripped, long strings truncated, attachment bytes dropped). topology_mermaid is the rendered graph diagram for context.

thread_id
string
required
graph_name
string
required
status
string
required
current_node
string | null
started_at
string | null
last_updated_at
string | null
pending_interrupt
boolean
default:false
summary
Summary · object
state
State · object
history
CheckpointSummary · object[]
topology_mermaid
string
default:""