Skip to main content
GET
/
v1
/
task
List Tasks
curl --request GET \
  --url https://api.anchorbrowser.io/v1/task \
  --header 'anchor-api-key: <api-key>'
{
  "data": {
    "tasks": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "description": "<string>",
        "latestVersion": "<string>",
        "code": "<string>",
        "language": "typescript",
        "browserConfiguration": {
          "initial_url": "<string>",
          "recording": {
            "active": true
          },
          "proxy": {
            "active": true,
            "type": "anchor_proxy",
            "country_code": "af",
            "region": "<string>",
            "city": "<string>"
          },
          "timeout": {
            "max_duration": 123,
            "idle_timeout": 123
          },
          "live_view": {
            "read_only": true
          }
        },
        "deleted": true,
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 1,
    "page": 2,
    "limit": 50
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Query Parameters

page
string
default:1

Page number

limit
string
default:10

Number of tasks per page

Response

List of tasks retrieved successfully

data
object
I