v1

latestOpenAPI 3.1.02026-07-1711022.5 KB

Create Task

Create a new automated browser task

post/task/create

Request body

taskstring required

Natural language description of the task to be automated

agentstring

Agent to use for the task

Example request

{
  "task": "Monitor a website for price changes",
  "tools": [
    {
      "type": "function"
    }
  ]
}

Response

Successful response

successboolean

Indicates if the request was successful

errorstring

Error message if the request failed

Example response

{
  "success": true,
  "data": {
    "taskId": "task_123"
  }
}