POST
/
task
curl -X POST "https://api2.circlemind.co/api/v1/task" \
-H "Content-Type: application/json" \
-H "apikey: YOUR_API_KEY" \
-d '{
"task": "Go to hacker news and get the top 5 stories.",
"device": "desktop",
"max_steps": 32,
"enable_recording": true
}'
{
  "id": "<string>",
  "status": "waiting",
  "output": "<any>",
  "credits_used": 123,
  "device": "desktop",
  "live_url": "<string>",
  "recording_url": "<string>"
}

Authorizations

apikey
string
header
required

Body

application/json

Run task request model.

Response

200
application/json

Task successfully submitted. The initial response may have a status of 'waiting'.

Task response model.