Eventsv4
Get an event
GET
/events/{eventId}Path parameters
eventIdRequiredstringUnique identifier of the event, prefixed with evt_. Returned by the List events endpoint.
Headers
AuthorizationRequiredstringYour 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
dataoptionalEventidoptionalstringEvent id (evt_...).
typeoptionalstringe.g. message.delivered, poll.voted.
message_idoptionalstring | nullchat_idoptionalstring | nullchannel_typeoptionalstring | nulloccurred_atoptionalintegerdataoptionalobjectResponse 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.
curl -X GET https://api.blooio.com/v4/events/evt_a1b2c3d4 \ -H "Authorization: Bearer bl_live_..."{ "data": { "id": "evt_a1b2c3d4", "type": "string", "message_id": "msg_a1b2c3d4", "chat_id": "chat_a1b2c3d4", "channel_type": "string", "occurred_at": 0, "data": {} }}