Skip to content

Map examples

Keyword-constrained map

Map only checkout-related URLs

```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" }' ```

Subdomain expansion

Terminal window
curl https://api.faircompany.ai/v1/crawl/map \
-X POST \
-H "Authorization: Bearer $FAIRCRAWL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://stripe.com",
"limit": 100,
"include_subdomains": true
}'

Sitemap-only

Terminal window
curl https://api.faircompany.ai/v1/crawl/map \
-X POST \
-H "Authorization: Bearer $FAIRCRAWL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://docs.stripe.com",
"sitemap_only": true
}'