Skip to main content
GET
/
ott
/
channels
List OTT channels
curl --request GET \
  --url https://api-message.nativehub.live/api/v1/ott/channels \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "f8a9b0c1-d2e3-4567-fa89-012345678901",
      "tenant_id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "name": "WhatsApp Business",
      "channel": "whatsapp",
      "provider_id": "a9b0c1d2-e3f4-5678-ab90-123456789012",
      "config": {
        "business_account_id": "1234567890",
        "phone_number_id": "9876543210"
      },
      "status": "active",
      "created_at": "2026-02-01T14:00:00Z"
    }
  ],
  "total": 123,
  "page": 123,
  "per_page": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer
default:1

Page number (default 1)

Required range: x >= 1
per_page
integer
default:20

Items per page (default 20, max 100)

Required range: 1 <= x <= 100

Response

200 - application/json

OTT channels retrieved successfully

data
object[]
total
integer
page
integer
per_page
integer