---
title: "List tasks"
method: GET
path: "/v1/tasks"
tags: ["Adam API"]
---

# List tasks

`GET /v1/tasks`

## Query parameters

- `status` 'queued' | 'running' | 'awaiting_input' | 'completed' | 'cancelled' | 'failed'
- `projectId` string, uuid
- `cursor` string
- `limit` integer

## Response `200`

- ListPublicApiTasksResponseDto
  - `tasks` object[], required
    - `id` string, required
    - `title` string, required
    - `status` 'queued' | 'running' | 'awaiting_input' | 'completed' | 'cancelled' | 'failed', required
    - `projectId` string, nullable, required
    - `model` object, required
      - `slug` string, nullable, required
      - `fast` boolean, required
      - `effort` 'low' | 'medium' | 'high' | 'xhigh', nullable, required
    - `pendingInteraction` object, nullable, required
      - `id` string, required
      - `type` 'question' | 'approval', required
      - `prompt` string, nullable, required
    - `createdAt` string, required
    - `updatedAt` string, required
  - `nextCursor` string, nullable, required

## Other responses

- `400` — Invalid request
- `401` — Missing or invalid Bearer credential
- `402` — Payment or subscription required
- `403` — Credential is missing a required scope
- `404` — Resource not found
- `409` — Request conflict
- `429` — Rate limit exceeded
- `500` — Internal API error

---

[API](https://skmtc.dev/adam/apis/adam-api.md) · [All operations](https://skmtc.dev/adam/apis/adam-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/adam/adam-api/revisions/51dcac1f99da/schema)
