Path Parameters
Unique identifier of the task (UUID format)
Response
Returns a nested object containing conversation threads:Array of messages from the root task
For each sub-task, an array of messages with the same structure as root
Example Request
Example Response
Use Cases
- Debug multi-agent workflows - See the complete execution tree
- Analyze token usage - Track token consumption across all sub-tasks
- Audit conversations - Review complete interaction history
- Performance analysis - Measure response times and token efficiency
Notes
- This endpoint includes all sub-tasks spawned by the root task
- Each sub-task has its own message array keyed by task ID
- The
rootkey always contains the main task’s conversation - Token metrics help track LLM API costs
Comparison with /thread Endpoint
| Feature | /thread | /thread/full |
|---|---|---|
| Root task messages | ✅ | ✅ |
| Sub-task messages | ❌ | ✅ |
| Token metrics | ✅ | ✅ |
| Tool call details | ✅ | ✅ |
| Response structure | Simple array | Nested object |
/thread/full when you need to see sub-task execution details in multi-agent workflows.
See Also
- [Get Task Thread](/API reference/v1/tasks/get-thread) - Get thread for root task only (currently has issues)
- [Get Task](/API reference/v1/tasks/get-task) - Get task details and status
- [List Tasks](/API reference/v1/tasks/list-tasks) - List all tasks
Authorizations
API Key for authentication
Path Parameters
Response
Successful Response

