Eventsv4
List events
GET
/eventsUnified activity feed (message lifecycle, polls, groups, reactions, typing). Filter by type, chat, or message.
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
Query parameters
typeoptionalstringEvent type or wildcard, e.g. message.received or message.*.
chat_idoptionalstringmessage_idoptionalstringlimitoptionalintegerMaximum number of items to return per page. Must be between 1 and 200; defaults to 50. Combine with cursor to paginate.
cursoroptionalstringOpaque pagination cursor. Pass the next_cursor value from a previous response to fetch the next page; omit it on the first request.
Returns
dataoptionalEvent[]
dataoptionalEvent[]Array of Event
idoptionalstringEvent id (evt_...).
typeoptionalstringe.g. message.delivered, poll.voted.
message_idoptionalstring | nullchat_idoptionalstring | nullchannel_typeoptionalstring | nulloccurred_atoptionalintegerdataoptionalobjecthas_moreoptionalbooleannext_cursoroptionalstring | nullResponse codes
200A page of events
400The request was malformed — check the path, query parameters, and body.
401Your API key is missing or invalid. Pass it as a bearer token.
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?type=string&chat_id=chat_a1b2c3d4&message_id=msg_a1b2c3d4&limit=50&cursor=string \ -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": {} } ], "has_more": true, "next_cursor": "string"}