List channels
/channelsLists messaging channels for the organization. A channel_id (ch_...) is required to send messages.
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.
Query parameters
typeoptionalChannelTypeFilter by channel type.
"blooio""twilio""whatsapp""whatsapp_business""rcs_business""amb"statusoptionalChannelStatusFilter by channel status.
"pending_verification""active""suspended""banned""deprecated"limitoptionalintegerMaximum 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
dataoptionalChannel[]
dataoptionalChannel[]Array of Channel
idoptionalstringChannel id (ch_...).
typeoptionalstring"blooio""twilio""whatsapp""whatsapp_business""rcs_business""amb"display_addressoptionalstring | nullHuman-readable sender address.
statusoptionalstring"pending_verification""active""suspended""banned""deprecated"capabilitiesoptionalChannelCapabilitiesWhat a channel can do. Shape varies by channel type.
capabilitiesoptionalChannelCapabilitiesWhat a channel can do. Shape varies by channel type.
protocolsoptionalstring[]contentoptionalstring[]actionsoptionalstring[]interactiveoptionalstring[]gatesoptionalstring[]created_atoptionalintegerEpoch milliseconds.
has_moreoptionalbooleannext_cursoroptionalstring | nullResponse codes
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/channels?type=blooio&status=pending_verification&limit=50&cursor=string \ -H "Authorization: Bearer bl_live_..."{ "data": [ { "id": "ch_018f7b2a-1c3d-7e4f-9a2b-0c1d2e3f4a5b", "type": "blooio", "display_address": "+15551234567", "status": "active", "capabilities": { "protocols": [ "imessage", "sms", "rcs" ], "content": [ "text", "media" ] }, "created_at": 1718000000000 } ], "has_more": false, "next_cursor": null}