Chat on WhatsApp
  
import requests

url = "https://api.firecrawl.dev/v2/map"

payload = {
  "url": "https://thetransformation.space",
  "limit": 5000,
  "includeSubdomains": False,
  "sitemap": "include",
  "origin": "website"
}

headers = {
    "Authorization": "Bearer fc-a4db1c5dc5ec47e79a4e4164781971ad",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.json())