Antlytics logoAntlytics

Connect Antlytics to Pabbly Connect

Pabbly Connect is a no-code automation platform. Use its Webhook trigger to receive Antlytics events and route data to any connected app.

Option A: Webhooks (recommended)

  1. In Pabbly Connect, create a new workflow. Choose Webhook as the trigger and copy the endpoint URL.
  2. In your Antlytics dashboard, go to Settings → WebhooksAdd webhook.
  3. Paste the Pabbly Connect URL, select your events, then click Create. Save the signing secret.
  4. Click Test in Antlytics to fire a sample payload into your Pabbly Connect workflow.
  5. Pabbly Connect captures the payload structure. Map fields to your action apps.

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"
}

In Pabbly Connect action steps, reference fields as {{stats.visitors}}, {{stats.pageviews}}, etc.


Option B: API polling via Pabbly Connect scheduler

Pabbly Connect supports a Schedule trigger for recurring automations:

  1. Add a Schedule trigger and configure your interval (e.g. daily).
  2. Add an API action step with:
    • Method: GET
    • URL: https://www.antlytics.com/api/v1/stats?site_id=YOUR_SITE_ID
    • Headers: Authorization: Bearer ant_YOUR_TOKEN
  3. Map the response fields to subsequent action steps.

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.