Make.com

Use HeadlessX from Make.com with the HTTP module and JSON parsing tools.

by @saifyxpro


Use the HTTP module with a JSON request body.

Good Make.com patterns


  • scrape a page, then push the output into Airtable, Notion, or Sheets
  • search with Tavily or Exa, then iterate results
  • queue a website crawl, then route the returned job ID into polling steps

Request checklist


  • set method to POST for most scrape and search routes
  • send Content-Type: application/json
  • include X-API-Key
  • map response fields like data, results, jobId, and status

Troubleshooting