GET
/
saved_tasks
/
name
/
{task_name}
curl --request GET \
  --url https://browser.ai/api/v1/saved_tasks/name/{task_name} \
  --header 'Authorization: <api-key>'
{
  "taskId": "<string>",
  "name": "<string>",
  "project": "<string>",
  "geoLocation": {
    "country": "<string>",
    "city": "<string>",
    "zipcode": "<string>"
  },
  "type": "<string>",
  "cron_settings": "<string>",
  "instructions": [
    {
      "action": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

task_name
string
required

The name of the saved task (URL-encoded if it contains spaces).

Example:

"MySavedTask"

Response

200
application/json

Saved task details

The response is of type object.