Use the fastCRW map flow to discover reachable URLs quickly before committing to a deeper crawl.
map is the lightweight discovery tool in the stack. Use it before crawl when you need to answer:
curl -X POST https://fastcrw.com/api/v1/map \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"url":"https://example.com"}'
map Comes FirstA lot of scraping waste comes from starting too broad. map helps you inspect the site structure first, which is especially useful when:
Choose map when you want to answer:
One common pattern looks like this:
map a docs home page or product section.scrape for a handful of known-important pages.crawl only for the subset that deserves broader recursion.That works well for AI agents, indexing systems, and human operators doing a first evaluation.
map is for discovery, not deep extraction. Treat it as a planning primitive:
If your end goal is page content, map should usually be the first step, not the last one.