Use DataMerge in Make Scenarios
Connect DataMerge to Make (formerly Integromat) using the HTTP module. Enrich companies, find contacts, and pipe results into any of Make's 1,500+ connected apps.
20 kostenlose Credits sichernSetup with Make's HTTP Module
- In your Make scenario, add an HTTP "Make a request" module
- Set the method to
POST - Set the URL to the DataMerge endpoint you want to use:
https://api.datamerge.ai/v1/company/enrich - Add the Authorization header:
Authorization: Bearer YOUR_API_KEY - Set the body type to JSON and add your request body:
{"domain": "stripe.com"} - Set Parse response to Yes
The module returns the enriched data as structured output you can map to subsequent modules.
Example Scenarios
Lead Enrichment Pipeline
Google Sheets trigger (new row) → DataMerge HTTP (enrich company) → Filter (by employee count) → HubSpot (create/update company)
Contact Discovery
Webhook trigger (new deal in CRM) → DataMerge HTTP (find contacts) → Email (send contact list to sales rep)
Async Enrichment with Webhooks
DataMerge integration webhook → Make Custom Webhook trigger → Router (company vs contact) → CRM update or Slack notification
Receiving Webhook Payloads in Make
For async workflows, you can receive DataMerge integration webhook payloads directly in Make:
- Add a Custom Webhook trigger to your scenario
- Copy the webhook URL that Make generates
- In the DataMerge app, go to Integrations and add a Webhook integration
- Paste the Make webhook URL
- Run a test enrichment to populate Make's data structure
The clean payload format (object_type, record_id, and entity fields only) means Make can map the fields directly without transformation. See the webhooks guide for payload details.
Frequently Asked Questions
Does DataMerge have a native Make integration?
No, but Make's HTTP module works perfectly with the DataMerge API. Use the "Make a request" action to call any DataMerge endpoint, and set up a webhook trigger to receive enrichment results.
How do I authenticate?
Add an Authorization header with your DataMerge API key as a Bearer token. The header value should be: Bearer YOUR_API_KEY.
Can I receive webhook payloads in Make?
Yes. Create a Custom Webhook trigger in Make and use that URL as your integration webhook in the DataMerge app. The clean payload format works directly without transformation.
What endpoints can I call?
All DataMerge API endpoints are available via HTTP: company enrichment, contact search, hierarchy lookup, and more. See the API documentation at api.datamerge.ai/docs for the complete list.