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

Get channel capabilities

GET/channels/{channel}/capabilities

Returns supported protocols, content types, actions, and interactive features for a channel.

Path parameters

channelRequiredstring

The channel reference — the same three forms from accepts: a phone number (URL-encode + as %2B), a channel alias, or the exact channel id (ch_...).

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

dataoptionalobject
channel_idoptionalstring
typeoptionalstring
"blooio""twilio""whatsapp""whatsapp_business""rcs_business"
capabilitiesoptionalChannelCapabilities

What a channel can do. Shape varies by channel type.

protocolsoptionalstring[]
contentoptionalstring[]
actionsoptionalstring[]
interactiveoptionalstring[]
gatesoptionalstring[]

Response codes

200Channel capabilities
401Your API key is missing or invalid. Pass it as a bearer token.
404No channel was found with the provided `channel`.

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/channels/string/capabilities \
Response objectexample
{  "data": {    "channel_id": "ch_a1b2c3d4",    "type": "blooio",    "capabilities": {      "protocols": [        "string"      ],      "content": [        "Hello from Blooio!"      ],      "actions": [        "string"      ],      "interactive": [        "string"      ],      "gates": [        "string"      ]    }  }}