Scrape and extract readable content from any URL using headless Chromium. Returns markdown, text, or HTML. Powered by Crawlee + Playwright.
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | URL to scrape |
format | string | No | Output format: markdown (default), text, or html |
waitFor | number | No | Extra ms to wait after page load (default 0, max 10000) |
{
"url": "https://example.com",
"format": "markdown",
"content": "# Example Domain\n\nThis domain is for use in illustrative examples...",
"contentLength": 1234,
"scrapedAt": "2026-02-18T..."
}
$0.01 USDC per scrape
curl -X POST https://pylon-web-scrape-api.fly.dev/scrape \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "format": "markdown"}'