Documentation Index
Fetch the complete documentation index at: https://docs.xpander.ai/llms.txt
Use this file to discover all available pages before exploring further.
Tasks.aget loads a full Task object: input, status, result, token usage, deep-planning state, attached files, and everything else stored against the task record.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
task_id | str | Yes | Task ID. |
Returns Task
A full Task. See the Task class reference for attributes.
Examples
Wait for completion
task.aevents() instead: see streaming events.
Reload an existing instance
If you already have aTask instance and want fresh data, prefer task.areload() over a fresh aget: it preserves any in-flight deep_planning state that the API might briefly return as empty:
Sync version
Errors
RaisesModuleException on failure. Common statuses:
| Status | Cause |
|---|---|
| 404 | Task doesn’t exist (or wrong organization). |
| 403 | Task exists but isn’t accessible. |
| 500 | Server error. |

