Skip to main content
GET
/
task
/
{task_id}
curl -X GET "https://api2.circlemind.co/api/v1/task/YOUR_TASK_ID" \
-H "apikey: YOUR_API_KEY"
{
  "id": "<string>",
  "status": "waiting",
  "output": "<any>",
  "credits_used": 123,
  "device": "desktop",
  "live_url": "<string>",
  "recording_url": "<string>"
}

Authorizations

apikey
string
header
required

Path Parameters

task_id
string
required

Response

Successful Response: The task has completed (status is 'done' or 'failed').

Task response model.

id
string
required

The ID of the task.

status
enum<string>
required

The status of the task.

Available options:
waiting,
running,
done,
failed
output
any

The output of the task.

credits_used
integer | null

The amount of credits used to perform the task.

device
enum<string> | null

The device type used for the task.

Available options:
desktop,
mobile
live_url
string | null

The URL to view and interact with the task execution.

recording_url
string | null

The URL to view the task recording.

I