PRODUCT

Render.

Run any URL through a real Chrome and get the post-JavaScript HTML back. Browser-as-a-service without managing a fleet.

Render a single URL

For single-page apps, sites with client-side data hydration, or any page that's blank without JavaScript.

curl -X POST https://api.crawlcrawl.com/v1/cloud/render \
  -H "Authorization: Bearer crk_..." \
  -d '{"url":"https://spa-app.example","return_format":"raw"}'

# returns
{ "url": "...", "status": 200, "content": "<!doctype html>...post-JS HTML...", "cost_usd": 0.001 }

Output formats

Default is "raw" — the full HTML after JavaScript executes. Pass return_format: "markdown" to get the cleaned-up version directly.

When to use this vs. Crawler

/v1/crawls renders JS when it sees JS — you don't need to flag it. Reach for /v1/cloud/render when you want a single page from a specifically hard-to-render target and don't need the crawl graph.

Where it fits

Real Chrome, by API.

No headless fleet to maintain. Same key as everything else.

Get an API key — free