Events  /  Get event

Get event

GET/v1/events/{id}

Returns one event with its per-destination delivery results. Only id, site_key, and occurred_at are guaranteed at the API boundary; other fields are passed through from the delivery service, so null-check anything you depend on.

Path parameters
id
string · required
The event id.
Response fields
id
string
Prefixed identifier, e.g. evt_ab2c182b…. Guaranteed.
site_key
string
The site's public key (matches a site's site_key). Guaranteed.
occurred_at
timestamp | null
When the conversion fired in the browser. Guaranteed.
flow_name
string
The flow that produced the event. Passed through.
trigger
string
What fired it, e.g. form_submission. Passed through.
status
string
Delivery status: completed, failed, or queued. Passed through.
actions
array
Per-destination delivery results. Passed through.
GET/v1/events/{id}
curl https://app.converly.io/api/v1/events/evt_ab2c182b… \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "id": "evt_ab2c182b…",
  "site_key": "site_1VQH84sr",
  "occurred_at": "2026-06-30T12:04:11.412Z",
  "flow_name": "Demo bookings",
  "status": "completed",
  "actions": [
    { "destination": "google-ads", "status": "delivered" },
    { "destination": "meta", "status": "delivered" }
  ]
}