Get a task

Retrieves a specific task by ID.

You can only access tasks that you own. Attempting to access another user’s task will return a 404 error (security-first: doesn’t leak task existence).

Authentication

X-API-Keystring
Enter your API key for programmatic access
OR
AuthorizationBearer

Enter your JWT token (without the ‘Bearer ’ prefix)

Path parameters

idstringRequiredformat: "uuid"
Task ID

Response

Task
creator_idstringformat: "uuid"

ID of the creator (user or agent) who created this task. This is a polymorphic field that can reference either a user UUID or an agent UUID.

descriptionstring
Brief description of the task
idstringformat: "uuid"
Unique task identifier
statusenum
Current status of the task
inserted_atstring or nullformat: "date-time"
Timestamp when the task was created
metadataobject or null

Additional task metadata (custom key-value pairs)

summarystring or null
Longer summary with additional details
updated_atstring or nullformat: "date-time"
Timestamp when the task was last updated

Errors