Skip to content

Map parameters

FieldTypeRequiredNotes
urlstringyesSite root or section root.
limitnumbernoMaximum URLs to return.
searchstringnoFilter returned URLs by keyword.
include_subdomainsbooleannoInclude sibling subdomains.
sitemap_onlybooleannoRestrict discovery to sitemap data.

Best practice

  • start with limit: 50
  • add search when you already know the concept you want, like pricing or checkout
  • use sitemap_only for fast, predictable docs-site discovery

Map parameter baseline

```bash curl https://api.faircompany.ai/v1/crawl/map \ -X POST \ -H "Authorization: Bearer fc_live_xxx" \ -H "Content-Type: application/json" \ -d '{ "url": "https://docs.stripe.com", "limit": 50, "search": "checkout" }' ```