No-Code & Automation

Scrape Websites in Make (Integromat) Scenarios

Make scenarios can call any HTTP API. Add an HTTP module, point it at denkbot.dog, and your scenario can fetch any URL and get back structured data — title, text, links, metadata — ready to map into any other module. Google Sheets, Notion, Airtable, Slack — wherever you send data, the dog can feed it.

What you'd use this for

Google Sheets populated with live website data, Notion databases updated from web sources, Slack alerts triggered by page content changes, Airtable records enriched with scraped metadata.

How it works

example
// Make HTTP Module settings:
URL: https://api.denkbot.dog/scrape
Method: POST
Headers:
  Authorization: Bearer {{env.DENKBOT_API_KEY}}
  Content-Type: application/json
Body (JSON):
{
  "url": "{{1.url}}",
  "format": "json"
}

// Map to Google Sheets:
Title:       {{response.title}}
Description: {{response.metadata.description}}
Text:        {{response.text}}
Links count: {{length(response.links)}}

Questions & Answers

Which Make HTTP module should I use?+

Use "Make an HTTP request" (not "Make a basic HTTP request"). It supports custom headers and JSON body.

Can I trigger a scrape when a new row appears in Sheets?+

Yes. Watch Rows → HTTP Request to denkbot.dog → Update Row with scraped data. Classic Make pattern.

How do I handle the screenshot PNG in Make?+

Set "Parse response" to false. Make passes the raw binary to the next module — use "Upload a file" to push it to Drive or S3.

Ready to start fetching?

€19/year. Unlimited requests. API key ready in 30 seconds.