Skip to main content
POST
/
checkpoints
/
get-tuple
Get Checkpoint Tuple
curl --request POST \
  --url https://api.example.com/checkpoints/get-tuple \
  --header 'Content-Type: application/json' \
  --data '
{
  "thread_id": "<string>",
  "checkpoint_ns": "",
  "checkpoint_id": "<string>"
}
'
{
  "thread_id": "<string>",
  "checkpoint_ns": "<string>",
  "checkpoint_id": "<string>",
  "checkpoint": {},
  "metadata": {},
  "parent_checkpoint_id": "<string>",
  "blobs": [
    {
      "channel": "<string>",
      "version": "<string>",
      "type": "<string>",
      "blob": "<string>"
    }
  ],
  "pending_writes": [
    {
      "task_id": "<string>",
      "idx": 123,
      "channel": "<string>",
      "type": "<string>",
      "blob": "<string>"
    }
  ]
}

Body

application/json
thread_id
string
required
checkpoint_ns
string
default:""
checkpoint_id
string | null

Response

CheckpointTupleResponse · object | null

Successful Response

thread_id
string
required
checkpoint_ns
string
required
checkpoint_id
string
required
checkpoint
Checkpoint · object
required
metadata
Metadata · object
required
parent_checkpoint_id
string | null
blobs
BlobResponse · object[]
pending_writes
WriteResponse · object[]