Map all discoverable URLs on a website via Firecrawl's MPP-enabled endpoint.
What it does
This endpoint exposes Firecrawl's URL mapping functionality through the Micro-Payment Protocol (MPP) on Tempo. Firecrawl is a web scraping, crawling, and structured data extraction platform designed for LLM workflows. The /v1/map endpoint is intended to accept a target URL and return a list of all discoverable URLs on that website, which is useful for sitemap generation, crawl planning, and content inventory tasks.
The endpoint is hosted at firecrawl.mpp.tempo.xyz and is expected to settle payments via the Tempo L2 network using pathUSD. However, during probing the endpoint returned 404 on both HEAD and GET requests, and no 402 MPP payment challenge was captured. The root domain and all documentation paths also return 404. This suggests the endpoint may not currently be live or may only respond to POST requests with a specific payload, which the probe did not attempt.
Because no schema, pricing information, documentation, or successful challenge was captured, nearly all details about request/response format, cost per call, and exact capabilities are inferred from the endpoint path and the existing listing description. Users should verify availability before relying on this endpoint.
Capabilities
Use cases
- —Generate a complete list of URLs on a target website for crawl planning
- —Build sitemaps programmatically for SEO or content auditing
- —Discover all pages on a domain before running a full scrape or extraction pipeline
Fit
Best for
- —Agents that need to enumerate pages on a website before deeper processing
- —LLM pipelines that require a site-wide content inventory
- —Developers building crawl workflows who want pay-per-call URL mapping
Not for
- —Full-page content extraction or scraping (use a scrape endpoint instead)
- —Free or high-volume mapping without per-call payment overhead
Quick start
curl -X POST https://firecrawl.mpp.tempo.xyz/v1/map \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'Example
Request
{
"url": "https://example.com"
}Endpoint
Quality
The endpoint returned 404 on all probe methods and no MPP 402 challenge was captured. All crawled pages return 'Not Found'. No schema, pricing, or documentation is available. The listing is essentially a stub based on the endpoint path and existing description.
Warnings
- —Endpoint returned 404 on HEAD and GET — no MPP 402 challenge captured; it may only accept POST or may be offline.
- —Root domain and all documentation paths (/docs, /api, /pricing, /README) return 404.
- —No pricing, schema, or response format information is available.
- —Request and response examples are speculative and based solely on the endpoint path name.