Browser session behavior

Persistent session

A login state that survives browser restarts by storing a long-lived token or cookie. All relevant cookies are saved so you log in once and remain authenticated on subsequent browser launches
  "browser_settings": {
    "browser_type": "persistent",
    "os_type": "windows"
  }

One-time session

One-time sessions are ephemeral and end immediately after use or at browser shutdown. Every new connection will create a browser from the scratch
  "browser_settings": {
    "browser_type": "one-time",
    "os_type": "windows"
  }

Proxy settings

Why proxies important?

Mobile and residential proxies allow traffic to appear as coming from real users, reducing the risk of blocks and CAPTCHAs by using authentic IP addresses. They also help bypass geographic and ISP restrictions, ensuring stable operation of automated scripts

Proxy type

  1. Residential – when you want to fetch information from the site as a desktop user
  2. Mobile – when you want to fetch information from the site’s mobile version

Targeting

  1. Country code – US, GB, CA and etc.
  2. Region – California, England, British Columbia and etc.
  3. City – Canyon country, Barnet, Richmond and etc.
  4. ISP – Spectrum, Sky Broadband, Telus and etc.
  "proxy_settings": {
    "country": "US",
    "region": "California",
	"city": "Canyon country",
	"ISP": "Spectrum",
    "proxy_type": "residential"
  }