---
title: "Get task"
method: GET
path: "/api/v1/task/{task_id}"
---

# Get task

`GET /api/v1/task/{task_id}`

Returns the status of a task by its ID.

## Path parameters

- `task_id` string, required

## Query parameters

- `event_t` integer — Timestamp of last event received.
- `downloads` boolean

## Cookies

- `apikey` string

## Response `200`

Successful Response

- ApiResponseTaskResponsePlusInternals
  - `r` TaskResponsePlusInternals, required — Add on anything we don't want to support in the public SDK.
    - `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
    - `console_log_url` string, nullable
    - `session_log` object[], nullable
    - `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.
    - `exec_trace_url` string, nullable
    - `d` unknown
    - `fingerprint_id` string, nullable

## 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)
