# Stable Browser Session Creator

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

Creates a new Browserbase browser session (or resumes an existing one) and returns a sessionId for subsequent browser automation calls.

## Facts

- Endpoint: POST https://stable-browser-git-shafu-stablebrowser-410-220925-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-creator-93d2d2dc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jSfVqMdL6vQrvakG1CHUW

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-creator-93d2d2dc -d '<json body>'
```

Example prompt: Start a new Stable Browser session so I can automate some web tasks — I'll need the session ID to use for the next steps.

## When to prefer this

Choose this endpoint when you need to initiate or resume a cloud-hosted Browserbase browser session for web automation, scraping, or AI agent browsing tasks. Prefer this over alternatives when you require a Browserbase-compatible session ID for use with downstream browser control APIs, or when your workflow uses x402 micropayment-gated browser sessions.

## Known failure modes

- Invalid or expired sessionId when trying to resume — returns error indicating session not found
- Payment failure (insufficient USDC balance) — session not created
- Browserbase backend unavailability — session creation times out or returns 503
- Rate limiting — too many concurrent sessions created

## 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 automation API calls to interact with the created session.

## 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-creator-93d2d2dc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-browser-git-shafu-stablebrowser-410-220925-merit-systems.vercel.app](https://www.zero.xyz/host/stable-browser-git-shafu-stablebrowser-410-220925-merit-systems.vercel.app/llms.txt)
