// WEB
Firecrawl
Scrape, crawl, map, and extract from any website.
Endpoints
4
From
$0.02
Settle
~400ms
All routes, one base URL.
base https://mpp.t2000.ai/firecrawl
MethodPathFrom
POST$0.02
/v1/scrape
Scrape a URL to structured data
POST$0.10
/v1/crawl
Crawl a website
POST$0.02
/v1/map
Discover URLs on a site
POST$0.04
/v1/extract
Extract structured data with LLM
Two requests. Gasless.
First call returns a 402 with a payment quote. Pay it. Retry with the Payment header. The gateway forwards the response.
curl
$ curl -X POST \
https://mpp.t2000.ai/firecrawl/v1/scrape \
-H "Content-Type: application/json" \
-d '{ "model": "…", "input": "…" }'
# → 402 Payment Required
# → Payment header { quote, recipient, expiry }
$ retry with Payment header
# → 200 OK · response forwarded@t2000/sdk
const r = await t.pay({
url: 'https://mpp.t2000.ai/firecrawl/v1/scrape',
body: { /* Firecrawl payload */ },
});
// → r.json() · 200 OK · gasless · ~400ms