GET
/v1/events/{event_id}Get an event
Returns one event with validation results and destination delivery attempts.
Authentication
Requires Authorization: Bearer ${API_KEY}. Create and rotate keys from the TrackLayer dashboard.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
event_id | string | Yes | Event identifier. |
Response schema · 200
{
"id": "evt_123",
"event_name": "purchase",
"deliveries": [
{
"destination": "meta",
"status": "sent"
}
]
}Response example
{
"id": "evt_123",
"event_name": "purchase",
"deliveries": [
{
"destination": "meta",
"status": "sent"
}
]
}Code examples
curl https://api.tracklayer.com/v1/events/evt_123 \
-H "Authorization: Bearer ${API_KEY}"Try it out
Use the dashboard to create an API key, then run one of the examples above with TRACKLAYER_API_KEY set in your environment.