List events
GET/v1/events
Lists your brand’s events, oldest first.
Behavior
- An event is recorded when it HAPPENS, not when it is delivered. A brand with no webhook endpoint still accumulates events, which is what makes this readable after you register one.
- Ordering is a stable total order: the event’s instant paired with its unique id. Paging twice returns the same rows in the same places.
- Scoped to your key’s brand by construction: no parameter names a brand.
List events
curl https://messages.api.linqapp.com/v1/events \
-H "Authorization: Bearer $LINQ_AMB_API_KEY"{
"data": [
{
"id": "evt_9c2f4a1b",
"type": "message.received",
"created_at": "2026-08-14T05:12:44Z",
"data": {
"body": "where is my driver?"
},
"chat_id": "chat_4f81b2",
"seq_from": 13,
"seq_to": 13
}
],
"next_cursor": ""
}Returns Examples
{
"data": [
{
"id": "evt_9c2f4a1b",
"type": "message.received",
"created_at": "2026-08-14T05:12:44Z",
"data": {
"body": "where is my driver?"
},
"chat_id": "chat_4f81b2",
"seq_from": 13,
"seq_to": 13
}
],
"next_cursor": ""
}