工具 API
firecrawl_ map
Map a website to discover all indexed URLs on the site. **Best for:** Discovering URLs on a website before deciding what to scrape; finding specific sections of a website. **Not recommended for:** When you already know which specific URL you need (use scrape or batch_scrape); when you need the content of the pages (use scrape after mapping). **Common mistakes:** Using crawl to discover URLs instead of map. **Prompt Example:** "List all URLs on example.com." **Usage Example:** ```json { "name": "firecrawl_map", "arguments": { "url": "https://example.com" } } ``` **Returns:** Array of URLs found on the site.
调用信息
- 工具标识
- firecrawl.firecrawl_map
- 服务提供方
- Firecrawl
- 平均响应
- 0 ms
- 近 7 天调用
- 0
输入参数
url必填Starting URL for URL discovery
searchOptional search term to filter URLs
sitemapSitemap handling: "include" - use sitemap + find other pages (default), "skip" - ignore sitemap completely, "only" - only return sitemap URLs
includeSubdomainsInclude URLs from subdomains in results
limitMaximum number of URLs to return
ignoreQueryParametersDo not return URLs with query parameters