POST
/
v1
/
sessions
curl --request POST \
  --url https://api.anchorbrowser.io/v1/sessions \
  --header 'Content-Type: application/json' \
  --header 'anchor-api-key: <api-key>' \
  --data '{
  "session": {
    "recording": {
      "active": false
    },
    "proxy": {
      "type": "anchor_residential",
      "active": false
    },
    "timeout": {
      "max_duration": 10,
      "idle_timeout": 3
    },
    "live_view": {
      "read_only": false
    }
  },
  "browser": {
    "profile": {
      "name": "my-profile",
      "persist": true,
      "store_cache": true
    },
    "adblock": {
      "active": false
    },
    "popup_blocker": {
      "active": false
    },
    "captcha_solver": {
      "active": false
    },
    "headless": {
      "active": true
    },
    "viewport": {
      "width": 1440,
      "height": 900
    }
  }
}'
{
  "data": {
    "id": "<string>",
    "cdp_url": "<string>",
    "live_view_url": "<string>"
  }
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Body

application/json
session
object

Session-related configurations.

browser
object

Browser-specific configurations.

Response

200
application/json
Successfully returned a browser object
data
object