---
title: "List tasks"
method: GET
path: "/api/v1/task"
---

# List tasks

`GET /api/v1/task`

List all tasks for a user.

## Query parameters

- `t` integer, nullable
- `l` integer

## Cookies

- `apikey` string

## Response `200`

Successful Response

- ApiResponseListTaskResponse
  - `r` TaskResponse[], required
    - `id` string, required — The ID of the task.
    - `status` 'waiting' | 'running' | 'done' | 'failed' | 'cancelled', required — The status of the task.
    - `output` unknown
    - `credits_used` integer, nullable — The amount of credits used to perform the task.
    - `device` 'desktop' | 'mobile' | 'desktop-lg', nullable — The device type used for the task.
    - `live_url` string, nullable — The URL to view and interact with the task execution.
    - `recording_url` string, nullable — The URL to view the task recording.
    - `downloads_url` string, nullable — The URL of the archive containing the downloaded files.
    - `network_har_url` string, nullable — Presigned URL of the network HAR (gzipped) capturing the task's network activity.
    - `console_log_url` string, nullable — Presigned URL of the timestamped browser console log.
    - `session_log` object[], nullable — Timestamped log of the session's steps and actions.
    - `created_at` integer, nullable — The timestamp when the task was created.
    - `tool_calls` object, nullable — Contains a list of pending tool calls.
    - `events` TaskEvent[], nullable — The list of new events fired.
      - `name` string, required — The name of the event.
      - `payload` object, required — The payload of the event.
      - `id` string, nullable — The ID of the event.
      - `timestamp` integer, nullable — The timestamp of the event.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/smooth/apis/circlemind-zero.md) · [All operations](https://skmtc.dev/smooth/apis/circlemind-zero/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/smooth/circlemind-zero/revisions/472956a12adf/schema)
