List an API key's channels
/api-keys/{apiKey}/channelsLists the numbered senders (Blooio and Twilio) the API key currently owns — the same lines the send layer will consider when a request authenticates with this key.
Blooio Apps (OAuth) only. Requires the apikeys:read scope. API-key and dashboard authentication are rejected with 403 oauth_token_required.
Path parameters
apiKeyRequiredstringThe API key value (prefixed with api_), as returned when the key was created or by the List API keys 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.
Returns
dataoptionalobject[]
dataoptionalobject[]Array of object
addressoptionalstringThe owned line in E.164, e.g. +15551234567. Usable as the {channel} reference on the assign/unassign endpoints and as from when sending.
typeoptionalstringProvider of the line (blooio or twilio).
bannedoptionalbooleanResponse 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/api-keys/sk_live_a1b2c3d4/channels \{ "data": [ { "address": "123 Main St", "type": "string", "banned": false } ]}