Use Case

Ad verification
across geos

Validate landing pages, redirects, and variants from the same geos your customers see. Capture proof screenshots, detect cloaking, and ship reliable verification pipelines.

Geo-Targeted Browsing

Render the same landing page from different countries, cities, and proxy types to validate targeting and localization.

Screenshot Proof

Capture full-page screenshots for audits, disputes, and internal debugging. Pair with HTML/markdown snapshots.

Mobile + Desktop Flows

Validate mobile consent banners, redirects, and “tap-only” UX. Use fingerprints and modality-aware actions.

Cloaking Detection

Compare what different egress profiles see (datacenter vs residential, US vs EU) to detect cloaking and variant routing.

Humanized REST Tools

Drive deterministic steps over HTTP (open, navigate, click, type, screenshot) without running Playwright in your infra.

Enterprise Controls

BYOP, labeling, and a zero-logs posture help you run verification at scale without leaking sensitive ad intel.

Open → navigate → screenshot

Use Humanized REST tools to open a remote session from a specific geo, navigate to a landing page, and capture a full-page screenshot.

verify.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/landing" });const shot = await post("/v1/do/take_screenshot", { sessionId, type: "png", fullPage: true });console.log({ mime: shot.file.mimeType, bytes: shot.file.data.length });

What teams verify

Geo QA
Device QA
Affiliate redirects
Consent banners
Cloaking checks
A/B variants
Search ads
Social ads
[ 06 / 06 ] — Get Started

Start building in under a minute

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