# Stable Browser Session Create

> Stable Browser Session Create is a paid API for AI agents from stable-browser-git-stablebrowser-public-live-view-merit-systems.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Creates or resumes a Browserbase browser session, returning a sessionId for subsequent browser automation calls.

## Facts

- Endpoint: POST https://stable-browser-git-stablebrowser-public-live-view-merit-systems.vercel.app/api/sessions
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stable-browser-session-create-ad7f45ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j70cBZreT4bURBQ0gWXK-

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 stable-browser-session-create-ad7f45ed -d '<json body>'
```

Example prompt: Start a new Browserbase browser session for me so I can begin automating web tasks — I don't have an existing session to resume, so create a fresh one.

## When to prefer this

Use this endpoint when you need to initiate or resume a cloud-based Browserbase browser session for web automation, scraping, or agent-driven browsing tasks. Choose this as the mandatory first step before any subsequent browser navigation or interaction calls.

## Known failure modes

- Invalid sessionId provided for resumption returns an error
- Payment failure (insufficient USDC balance) prevents session creation
- Browserbase service unavailable causes session provisioning to fail
- Session quota exceeded returns an error if too many concurrent sessions exist

## How this service works

Create a new browser session ($0.10). Optionally pass sessionId to resume an existing Browserbase session. Returns sessionId (Browserbase session ID) to use for all subsequent calls.

## Output

Returns a sessionId (Browserbase session ID string) that must be passed to all subsequent browser interaction calls for this session.

## Example request

```json
{}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "properties": {
      "sessionId": {
       "type": "string",
       "description": "Optional session ID to use/reuse. If not provided or invalid, a new session is created."
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stable-browser-session-create-ad7f45ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-browser-git-stablebrowser-public-live-view-merit-systems.vercel.app](https://www.zero.xyz/host/stable-browser-git-stablebrowser-public-live-view-merit-systems.vercel.app/llms.txt)
