Use Case

Stealth browser infrastructure
as a service

From weekend scripts to enterprise pipelines: browser.city is a stealth-first browser backend with multiple integration styles.

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 apiKey = process.env.BROWSERCITY_API_KEY!;const opts = { method: "POST", headers: { Authorization: `Bearer ${apiKey}` } };const post = (path: string, body: unknown) =>  fetch("https://api.browser.city" + path, { ...opts, body: JSON.stringify(body) }).then((r) => r.json());const open = await post("/v1/do/open", {  browser: "chromium",  egress: { mode: "managed", proxyType: "residential", country: "US" },});const sessionId = open.result;await post("/v1/do/navigate", { sessionId, url: "https://example.com" });const md = await post("/v1/do/markdown", { sessionId });console.log(md.result);

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

Start building in under a minute

Free tier. No credit card. Full stealth from day one.