Use Case

Stealth browser infrastructure
as a service

Stop managing browser instances and proxy networks. BrowserCity provides a stealth-first browser backend designed for scale, with multiple integration styles to fit any stack.

Start Tiny (Hobbyists)

One request to extract markdown. Great for price alerts, personal research, and weekend projects.

Scale Without Running Browsers

Humanized REST tools let you open, navigate, click, type, and screenshot over HTTP. No Playwright infra needed.

Full Control (Playwright Sessions)

If you already run Playwright, connect to remote sessions for deterministic workflows and deep debugging.

Enterprise-Ready Posture

Zero-logs posture, BYOP, labels, and sane defaults for running stealth browser workloads inside real orgs.

Stealth By Default

Fingerprints, proxies, and anti-bot defenses are handled for you. You ship outcomes, not browser plumbing.

Agent-Friendly Tools (MCP)

Expose the same primitives as discoverable tools for Codex, Claude Code, Cursor, and other MCP clients.

Open → navigate → extract

If you want interactive steps but don’t want to run Playwright, Humanized REST tools give you a clean HTTP surface over remote sessions.

stealth.ts
const actionUrl = (action: string) => `https://api.browser.city/v1/do/${action}`;const doAction = (action: string, body: unknown) =>  fetch(actionUrl(action), {    method: 'POST',    headers: { Authorization: `Bearer ${process.env.BROWSERCITY_API_KEY}`, 'Content-Type': 'application/json' },    body: JSON.stringify(body),  }).then((r) => r.json());const opened = await doAction('open', { browser: 'chromium', egress: { mode: 'managed', proxyType: 'residential', country: 'US' } });try {  await doAction('navigate', { sessionId: opened.sessionId, url: 'https://example.com' });  const page = await doAction('markdown', { sessionId: opened.sessionId });  console.log(page.result);} finally {  await doAction('close', { sessionId: opened.sessionId });}

Who uses it

Hobbyists: price alerts, sneaker drops, travel deals, “notify me” workflows
Startups: enrichment, scraping, agent browsing, growth research, QA pipelines
Agencies: ad verification, compliance checks, screenshot proof, geo/device validation
Enterprises: high-volume monitoring, BYOP, auditing workflows, isolation + labeling
[ 06 / 06 ] — Get Started

Give your AI agents the web.

Start for free. No credit card required. Private sessions by default.