Two products, one platform. Use the Playwright WebSocket for full browser control, or the HTTP Scraping API for simple one-shot page fetching — stealth and proxy rotation are included in both.
wss://browser.stratifyops.cloud/ws?browser_token=bt_live_YOUR_TOKEN&browser=chromium&stealth=trueGet your Browser Token → Dashboard → Browser Tokens → New Token
| Name | Type | Location | Required | Description |
|---|---|---|---|---|
browser_token | string | query string | required | Your browser token (bt_live_...). Create one in the dashboard under Browser Tokens. |
browser | "chromium" | "firefox" | query string | optional | Browser engine to use. Default: "chromium". |
stealth | "true" | "false" | query string | optional | Enable Camoufox anti-detection. Recommended for Cloudflare/Akamai-protected sites. Default: true. |
import asyncio
from playwright.async_api import async_playwright
BROWSER_TOKEN = "bt_live_YOUR_TOKEN_HERE"
async def main():
async with async_playwright() as pw:
browser = await pw.chromium.connect(
f"wss://browser.stratifyops.cloud/ws?browser_token={BROWSER_TOKEN}&browser=chromium"
)
page = await browser.new_page()
await page.goto("https://example.com")
print(await page.title())
await browser.close()
asyncio.run(main())Full Playwright API
Every Playwright method works: click, fill, scroll, evaluate, intercept network, set cookies.
Stealth included
Camoufox anti-detection + rotating residential proxies are injected per session automatically.
Session billing
1 WebSocket connection = 1 session. Sessions reset daily. Rate limits apply per token.
Create a free account in 30 seconds. No credit card required. Browser Tokens and API Keys are available immediately.