BetaThe V4 API is in beta — endpoints and functionality may change.
Eventsv4

Get an event

GET/events/{eventId}

Path parameters

eventIdRequiredstring

Unique identifier of the event, prefixed with evt_. Returned by the List events endpoint.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Returns

dataoptionalEvent
idoptionalstring

Event id (evt_...).

typeoptionalstring

e.g. message.delivered, poll.voted.

message_idoptionalstring | null
chat_idoptionalstring | null
channel_typeoptionalstring | null
occurred_atoptionalinteger
dataoptionalobject

Response codes

200An event
400The request was malformed — check the path, query parameters, and body.
401Your API key is missing or invalid. Pass it as a bearer token.
404No event was found with the provided `eventId`.

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X GET https://api.blooio.com/v4/events/evt_a1b2c3d4 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "data": {    "id": "evt_a1b2c3d4",    "type": "string",    "message_id": "msg_a1b2c3d4",    "chat_id": "chat_a1b2c3d4",    "channel_type": "string",    "occurred_at": 0,    "data": {}  }}