For the complete documentation index, see llms.txt. This page is also available as Markdown.

get_tasks()

get_tasks()

List trajectories with optional filtering

Arguments

{
  "project_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
  "name": "string",
  "user": "string",
  "limit": 0,
  "offset": 0,
  "sort_by": "string",
  "sort_order": "string"
}

Returns

Raw, unvalidated dicts (no Pydantic schema). Keys are not guaranteed by a model definition; access defensively.

[
  {
    "id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "created_at": "2026-06-03T08:00:00Z",
    "started_at": "2026-06-03T08:00:00Z",
    "crow": "string",
    "user": "string",
    "status": "string",
    "failure_reason": "string",
    "share_status": "string",
    "enabled": true,
    "notification_enabled": true,
    "notification_type": "string",
    "task": "string",
    "task_summary": "string",
    "build_id": "string",
    "gcloud_operation_name": "string",
    "runtime_config": "string",
    "project_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "project_name": "string",
    "project_description": "string",
    "organization_name": "string",
    "min_estimated_time": 0,
    "max_estimated_time": 0,
    "tags": [
      "string"
    ],
    "pruned_at": "2026-06-03T08:00:00Z"
  }
]

Last updated