⚡ Powered by Firecrawl

Web Scraping API.
Clean Markdown.

Crawl any website, extract structured content, power your AI. One API, zero infrastructure headaches.

Try Live Demo View API Docs
# Scrape any URL — get clean markdown back
curl -X POST https://crawl.pau1.cloud/v1/scrape \
-H "X-Api-Key: fc-s-your_api_key" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'

# Response:
{ "success": true, "data": { "markdown": "# Example Domain\n\n..." } }
Why CrawlAPI
Everything you need to scrape the web

Built on Firecrawl's battle-tested engine — the same tech used by thousands of developers.

📄

Clean Markdown Output

Get LLM-ready markdown from any URL. No HTML noise, no boilerplate — just the content you need.

🕷️

Full Site Crawling

Crawl entire websites with smart link discovery. Get thousands of pages with one API call.

🔑

Simple API Key Auth

One header, done. X-Api-Key: your_key — no OAuth, no complex setup.

JavaScript Rendering

Handles SPAs, React apps, dynamic content. Full headless Chrome rendering built in.

🛡️

Stealth Mode

Rotating proxies and anti-bot evasion. Get past rate limits and Cloudflare without pain.

📊

Usage Dashboard

Track your requests, monitor usage, and stay under your monthly limits in real time.

Live Demo
Try it right now — free

No API key needed for the demo. Enter any URL and see the magic.

Pricing
Simple, transparent pricing

Pay monthly, cancel anytime. No hidden fees, no per-seat pricing.

Starter
$9.99/mo
1,000 pages / month
  • Scrape & Crawl endpoints
  • Markdown + metadata output
  • JavaScript rendering
  • 10 req/min rate limit
  • Email support
Enterprise
$99.99/mo
100,000 pages / month
  • Everything in Pro
  • 200 req/min rate limit
  • Dedicated capacity
  • Custom integrations
  • SLA + dedicated support
API Reference
Simple, powerful API

Base URL: https://crawl.pau1.cloud — Auth: X-Api-Key: your_key

POST /v1/scrape

Scrape a single URL and get clean markdown content back.

curl -X POST https://crawl.pau1.cloud/v1/scrape \ -H "X-Api-Key: fc-s-your_key" \ -H "Content-Type: application/json" \ -d '{ "url": "https://example.com", "formats": ["markdown"], "onlyMainContent": true }'
ParameterTypeDescription
urlstringrequiredThe URL to scrape
formatsarrayoptional["markdown", "html", "links"] — default: ["markdown"]
onlyMainContentbooleanoptionalStrip nav, footer, ads. Default: true
timeoutnumberoptionalTimeout in ms. Default: 30000
POST /v1/crawl

Crawl an entire website recursively and return all pages as markdown.

curl -X POST https://crawl.pau1.cloud/v1/crawl \ -H "X-Api-Key: fc-s-your_key" \ -H "Content-Type: application/json" \ -d '{ "url": "https://docs.example.com", "limit": 50, "scrapeOptions": { "formats": ["markdown"] } }'
ParameterTypeDescription
urlstringrequiredStarting URL to crawl from
limitnumberoptionalMax pages to crawl. Default: 10
includePathsarrayoptionalURL patterns to include, e.g. ["/blog/*"]
excludePathsarrayoptionalURL patterns to exclude
GET /gateway/keys/usage

Check your current month's usage and remaining quota.

curl https://crawl.pau1.cloud/gateway/keys/usage \ -H "X-Api-Key: fc-s-your_key" # Response: { "plan": "pro", "usage": 342, "limit": 10000, "remaining": 9658, "month": "2026-03" }