Antlytics logoAntlytics

Connect Antlytics to Make

Make (formerly Integromat) connects Antlytics to hundreds of apps using visual automation scenarios.

Option A: Webhooks (recommended)

  1. In Make, create a new scenario. Add a WebhooksCustom webhook module as the trigger.
  2. Click Add to create a new webhook and copy the URL Make provides.
  3. In your Antlytics dashboard, go to Settings → WebhooksAdd webhook.
  4. Paste the URL, select your events, then click Create. Copy the signing secret shown once.
  5. Click Test in Antlytics to send a sample payload.
  6. Back in Make, click OK — Make captures the payload structure and maps all fields.
  7. 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

  1. Create a scenario with a Clock (schedule) trigger set to daily.
  2. Add an HTTPMake a request module.
  3. Configure it:
    • URL: https://www.antlytics.com/api/v1/stats?site_id=YOUR_SITE_ID
    • Method: GET
    • Headers: Authorization: Bearer ant_YOUR_TOKEN
  4. 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.