Get event
GET/v1/events/{evt}
Reads one event.
Behavior
- An id belonging to another brand answers
404, never403. The two are the same answer here, so this route cannot confirm an id exists elsewhere.
Get event
curl https://messages.api.linqapp.com/v1/events/$EVT \
-H "Authorization: Bearer $LINQ_AMB_API_KEY"{
"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
}Returns Examples
{
"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
}