Skip to main content
GET
/
saved_tasks
Get a list of saved tasks
curl --request GET \
  --url https://browser.ai/api/v1/saved_tasks \
  --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>.

Response

List of saved tasks

taskId
string
name
string
project
string
geoLocation
object
type
string
cron_settings
string
instructions
object[]