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

Get a channel

GET/channels/{channelId}

Path parameters

channelIdRequiredstring

Unique identifier of the channel (the sending surface), prefixed with ch_. Returned by the List channels 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

dataoptionalChannel
idoptionalstring

Channel id (ch_...).

typeoptionalstring
"blooio""twilio""whatsapp""whatsapp_business""rcs_business""amb"
display_addressoptionalstring | null

Human-readable sender address.

statusoptionalstring
"pending_verification""active""suspended""banned""deprecated"
capabilitiesoptionalChannelCapabilities

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

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

Epoch milliseconds.

Response codes

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

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/ch_a1b2c3d4 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "data": {    "id": "ch_a1b2c3d4",    "type": "blooio",    "display_address": "123 Main St",    "status": "pending_verification",    "capabilities": {      "protocols": [        "string"      ],      "content": [        "Hello from Blooio!"      ],      "actions": [        "string"      ],      "interactive": [        "string"      ],      "gates": [        "string"      ]    },    "created_at": 0  }}