# Notte Browser Session Start

> Notte Browser Session Start is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-13).

Starts a new managed cloud browser session with configurable browser type, proxy rotation, viewport, CAPTCHA solving, and session timeouts.

## Facts

- Endpoint: POST https://x402.orthogonal.com/notte/sessions/start
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/notte-browser-session-start-e4169a8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MYJdrsBY80Me1Pv9WIMqR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability notte-browser-session-start-e4169a8d -d '<json body>'
```

Example prompt: Start a new headless Chromium browser session with proxy rotation and CAPTCHA auto-solving enabled, a 1280x800 viewport, and a max duration of 30 minutes.

## When to prefer this

Choose this endpoint when you need a fully managed, remotely controlled cloud browser session with built-in proxy rotation and CAPTCHA solving — especially for anti-bot websites. Prefer it over self-hosted Playwright/Puppeteer when you want zero infrastructure management and pay-per-session pricing.

## Known failure modes

- Invalid browser_type value (not chromium, chrome, or firefox) returns a 400 error
- Exceeding account session limits returns a quota or rate-limit error
- Network or infrastructure failure may prevent session creation, returning a 500 error
- Invalid viewport dimensions may cause session misconfiguration
- Payment failure via x402 protocol blocks session creation

## How this service works

Start a new browser session. Configure browser type, proxies, viewport, and session timeout.

## Output

Returns a session object including a session ID, connection endpoint, and status indicating the browser session is ready for commands such as navigation, interaction, and scraping.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "proxies": {
   "type": "boolean",
   "description": "Enable proxy rotation"
  },
  "headless": {
   "type": "boolean",
   "description": "Run in headless mode (default: true)"
  },
  "user_agent": {
   "type": "string"
  },
  "browser_type": {
   "type": "string",
   "description": "Browser type: chromium, chrome, firefox"
  },
  "solve_captchas": {
   "type": "boolean",
   "description": "Auto-solve CAPTCHAs"
  },
  "viewport_width": {
   "type": "integer"
  },
  "viewport_height": {
   "type": "integer"
  },
  "idle_timeout_minutes": {
   "type": "integer",
   "description": "Idle timeout (default: 3)"
  },
  "max_duration_minutes": {
   "type": "integer",
   "description": "Max duration (default: 15)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/notte-browser-session-start-e4169a8d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
