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

200
application/json

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

Task response model.