Connect Antlytics to Relay.app
Relay.app is a collaborative automation platform. Use its HTTP trigger to receive Antlytics analytics events and kick off team workflows.
Option A: Webhooks (recommended)
- In Relay.app, create a new workflow. Choose HTTP trigger as the starting step and copy the endpoint URL.
- In your Antlytics dashboard, go to Settings → Webhooks → Add webhook.
- Paste the Relay URL, select your events (e.g. Daily summary), then click Create.
- Save the signing secret shown once.
- Click Test in Antlytics — the payload arrives in Relay's run history.
- Build out your workflow steps: send a Slack message, assign a task, update a Google Sheet, or run a human approval step.
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"
}
Map stats.visitors, stats.pageviews, and site_name to messages and data steps within your workflow.
Option B: API polling
Relay.app does not have a built-in scheduler trigger. Use a Zapier Schedule or Make scheduler to poll GET /api/v1/stats and forward results to Relay via an HTTP step.
Need help?
Email support@antlytics.com with your site ID.
Something missing? Get in touch and we will update these docs.