Documentation Index
Fetch the complete documentation index at: https://docs.splox.io/llms.txt
Use this file to discover all available pages before exploring further.
Lists all unique context memory instances for a workflow version. Each instance represents a distinct (context_memory_id, agent_node_id) pair.
Usage
curl "https://app.splox.io/api/v1/chat-memories/WORKFLOW_VERSION_ID" \
-H "Authorization: Bearer YOUR_TOKEN"
Path Parameters
| Parameter | Type | Description |
|---|
workflowVersionId | string (uuid) | The workflow version ID |
Response
{
"chats": [
{
"id": "user-session-abc",
"name": "user-session-abc",
"workflow_version_id": "019c3221-...",
"chat_id": "user-session-abc",
"memory_node_id": "019c3221-...",
"memory_node_label": "Research Agent",
"context_size": 4096,
"message_count": 24,
"created_at": "2025-10-22T10:00:00Z",
"updated_at": "2025-10-22T12:30:00Z"
}
]
}