POST
/
saved_tasks
curl --request POST \
  --url https://browser.ai/api/v1/saved_tasks \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "MySavedTask",
  "instructions": [
    {
      "action": "Open amazon.com, search for AirPods Pro 2, and find the three best prices available"
    }
  ],
  "type": "natural_language",
  "cron_settings": "",
  "project": "Project_1",
  "geoLocation": {
    "country": "<string>",
    "city": "<string>",
    "zipcode": "<string>"
  }
}'
{
  "taskId": "<string>",
  "message": "Saved task created successfully"
}

Authorizations

Authorization
string
header
required

Insert API token, use the format: apikey <API-TOKEN>.

Body

application/json

Response

200
application/json

Saved task created successfully

The response is of type object.