REST API
Web scraping modules for Make scenarios
Add HTTP scraping to Make scenarios with one module.
Make (formerly Integromat) is a visual automation platform. Use an HTTP module to call webclaw in any Make scenario, gaining web scraping and extraction capabilities for your integration flows.
Setup
Make HTTP module config
{
"url": "https://api.webclaw.io/v1/scrape",
"method": "POST",
"headers": [
{
"name": "Authorization",
"value": "Bearer {{WEBCLAW_API_KEY}}"
},
{
"name": "Content-Type",
"value": "application/json"
}
],
"bodyType": "raw",
"contentType": "application/json",
"body": "{\"url\": \"{{1.url}}\", \"formats\": [\"markdown\"]}"
}Why webclaw for Make (Integromat)
- Standard HTTP module, no custom connector needed
- JSON response parses cleanly in Make
- Bot bypass handled server-side
- Volume-friendly per-page pricing
Common use cases
- Enrich CRM contacts with web data
- Monitor competitor changes
- Content aggregation scenarios
- Lead scoring based on scraped signals
Frequently asked questions
How do I add webclaw to a Make scenario?
Add an HTTP > Make a request module. Configure POST to https://api.webclaw.io/v1/scrape with Bearer authentication and a JSON body containing the URL and formats.
Can I parse the webclaw JSON response automatically?
Yes. Enable 'Parse response' in the HTTP module and Make will let you map markdown, metadata, and other fields into downstream modules.
OTHER INTEGRATIONS