Skip to main content

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

project_id
string
Filter tasks by project ID (UUID).
status
string
Filter tasks by display or runtime status. Common values include running, awaiting_input, awaiting_ci, merged, unmerged, failed, aborted, and archived.

Response

tasks
array
List of task objects.
{
  "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

StatusDescription
401Unauthorized — missing or invalid token