Playground Sign in Start free
Generic Scraper

Headless Chrome. Without the headaches.

The workhorse: real Chromium, real residential proxies, real cookie state. Fetch any URL, render JS, return HTML or screenshot. The thing you reach for when you just need the page.

1–15
credits / call
92ms
static p50
180+
countries
GET /scrape
GET /scrape
  ?url=https://shop.example.com/p/lamp-12
  &render=true
  &premium=true
  &geo=us-ca
  &wait_for=.price

→ 200 OK · 15 credits · 2.1s
{
  "html": "<!doctype html>...",
  "status_code": 200,
  "final_url": "https://shop...",
  "screenshots": ["data:image/png;base64,..."],
  "headers": { ... },
  "credits_used": 15
}
Live playground

See it work, before you sign up.

Drop in a URL, run a real call against the live API, and watch the JSON come back in about a second. No API key required.

Real Chromium

Not a fingerprint shim. We run actual headed Chrome with mouse jitter, page-load timing, and human-grade TLS. Most sites can't tell.

auto_proxy: pay-on-success

Set proxy_type=auto and we escalate datacenter → residential → premium residential → custom pool → managed-Selenium until a request returns 200, and we only bill the successful tier. The default; opt out by pinning a specific tier.

You control the per-call cost

proxy_type is the cost lever. js=0 + datacenter is 1 credit. js=1 jumps to 5. premium / residential is 15. Start cheap on easy targets; escalate (or just leave proxy_type=auto) when a site genuinely needs it. Same endpoint, same code. Costs scale with what you actually need.

180+ geos

Set geo=us-ca or geo=de-be and route through a clean residential IP in that exact region. Cookies and language follow.

Smart waiting

wait_for: ".price" blocks until that selector appears. wait_for_network_idle waits for fetch storms to settle. No setTimeout(5000).

Screenshots + HAR

Full-page PNG, viewport PNG, or HAR file with every network call. Useful for debugging blocks and capturing content for archival.

Per-call sessions

Pass session_id to keep cookies and localStorage across requests. Perfect for paywalled or login-gated content.

Why not just Playwright?

Playwright gives you a browser; it doesn't give you proxies, anti-bot bypass, JA4 fingerprint patching, CAPTCHA-solving, or pay-on-success billing. We run a real Chromium under our own anti-detection stack and our credit pool, so the same code that works on a small site keeps working when the site adds Cloudflare.

Drop-in code

Copy. Paste. Ship.

import { Ujeebu } from "ujeebu";
const uj = new Ujeebu(process.env.UJEEBU_KEY);

const { html, status_code } = await uj.scrape({
  url:      "https://shop.example.com/p/lamp-12",
  render:   true,
  premium:  true,
  geo:      "us-ca",
  wait_for: ".price"
});
from ujeebu import Ujeebu
uj = Ujeebu(api_key=os.environ["UJEEBU_KEY"])

page = uj.scrape(
    url="https://shop.example.com/p/lamp-12",
    render=True, premium=True,
    geo="us-ca", wait_for=".price",
)
print(page["status_code"])  # 200
curl -G https://api.ujeebu.com/scrape \
  -H "Authorization: Bearer $UJEEBU_KEY" \
  --data-urlencode "url=https://shop.example.com/p/lamp-12" \
  -d "render=true&premium=true&geo=us-ca&wait_for=.price"
client := ujeebu.New(os.Getenv("UJEEBU_KEY"))

page, err := client.Scrape(ctx, ujeebu.ScrapeReq{
    URL: "https://shop.example.com/p/lamp-12",
    Render: true, Premium: true,
    Geo: "us-ca", WaitFor: ".price",
})
What people build with it

Real things real teams shipped this quarter.

Bulk page collection

Crawl a sitemap of 100k URLs and pipe HTML into your indexing job. Concurrent requests scale linearly with your plan tier.

Login-gated content

Authenticate once via session_id, then scrape behind the wall. Cookies persist across calls until they expire.

Geo-specific pricing

Same URL, 12 geos, 12 prices. Loop with the geo param, store with locale. Never get redirected to the wrong currency again.

Visual regression

Take daily full-page screenshots of your competitors' pricing pages. Diff with pixelmatch. Get notified when anything changes.

Ship Generic Scraper tonight.

5,000 credits free. No card. Real residential proxies on the free tier.