Documentation Index Fetch the complete documentation index at: https://docs.runaether.dev/llms.txt
Use this file to discover all available pages before exploring further.
Returns tasks for the authenticated user with optional filtering by project and status.
Authentication
Requires a valid Bearer token.
Query Parameters
Filter tasks by project ID (UUID).
Filter tasks by display or runtime status. Common values include running, awaiting_input, awaiting_ci, merged, unmerged, failed, aborted, and archived.
Response
List of task objects. Unique task identifier (UUID).
Task name (derived from the prompt).
Runtime status: queued, provisioning, running, awaiting_input, failed, or aborted.
Workspace ID when a workspace has been assigned.
ISO 8601 timestamp for when execution started.
ISO 8601 timestamp for terminal tasks.
Pending interactive input payload for awaiting-input tasks, including toolId, toolName, and input.
Task result summary on completion.
Error message if the task failed.
Brief summary of what the task accomplished.
{
"tasks" : [
{
"id" : "c3d4e5f6-7890-12ab-cdef-345678901bcd" ,
"name" : "Add login page" ,
"status" : "awaiting_input" ,
"workspace_id" : "f6e5d4c3-7890-12ab-cdef-345678901bcd" ,
"started_at" : "2025-01-15T10:25:00Z" ,
"completed_at" : null ,
"pending_question_payload" : null ,
"result" : "Created login page with email/password form" ,
"error" : null ,
"summary" : "Added a login page component with form validation" ,
"created_at" : "2025-01-15T10:30:00Z"
}
]
}
Errors
Status Description 401Unauthorized — missing or invalid token