Events
Events and webhooks
Every served ad emits up to three events: impression, click and conversion. Read them on demand from /v1/integration/events or subscribe to outbound webhooks (preview).
Recent events
Fetch the latest 100 events for debugging. Filters by property and by event type.
curl 'https://api.adpluga.com/v1/integration/events?limit=100' \
-H 'Authorization: Bearer sk_live_•••'Webhook payload (preview)
Outbound webhooks deliver the same JSON shape. We sign each request with X-AdPluga-Signature; verify with your endpoint secret.
{
"id": "evt_01HXYZ…",
"type": "ad.impression",
"created_at": "2025-04-12T08:14:22Z",
"data": {
"slot_id": "slot_home_top",
"campaign_id": "camp_01HXY…",
"is_test": false,
"request_id": "req_…"
}
}