Connect Antlytics to Make
Make (formerly Integromat) connects Antlytics to hundreds of apps using visual automation scenarios.
Option A: Webhooks (recommended)
- In Make, create a new scenario. Add a Webhooks → Custom webhook module as the trigger.
- Click Add to create a new webhook and copy the URL Make provides.
- In your Antlytics dashboard, go to Settings → Webhooks → Add webhook.
- Paste the URL, select your events, then click Create. Copy the signing secret shown once.
- Click Test in Antlytics to send a sample payload.
- Back in Make, click OK — Make captures the payload structure and maps all fields.
- Add further modules to forward data to Google Sheets, Slack, Notion, or any other app.
Example payload (daily summary)
{
"event": "daily_summary",
"site_id": "YOUR_SITE_ID",
"site_name": "example.com",
"period": "2026-04-11",
"stats": {
"visitors": 142,
"pageviews": 387,
"bounce_rate": 45,
"top_pages": [{ "path": "/", "visitors": 80 }],
"top_referrers": []
},
"timestamp": "2026-04-11T09:00:00Z"
}
Access fields in subsequent modules as {{1.stats.visitors}}, {{1.stats.pageviews}}, etc.
Option B: API polling via Make scheduler
- Create a scenario with a Clock (schedule) trigger set to daily.
- Add an HTTP → Make a request module.
- Configure it:
- URL:
https://www.antlytics.com/api/v1/stats?site_id=YOUR_SITE_ID - Method: GET
- Headers:
Authorization: Bearer ant_YOUR_TOKEN
- URL:
- Parse the response and map fields to the next module.
Create your API token in Settings → API tokens.
Need help?
Email support@antlytics.com with your site ID.
Something missing? Get in touch and we will update these docs.