---
title: "List channel accounts"
method: GET
path: "/v2/channel-accounts"
tags: ["Channel Accounts"]
---

# List channel accounts

`GET /v2/channel-accounts`

Retrieve a paginated list of channel accounts. By default returns all supported channel types (WHATSAPP_OFFICIAL, WHATSAPP, INSTAGRAM); soft-deleted accounts are always excluded. Use the optional `type` query parameter to narrow the result to a single channel type.

## Query parameters

- `limit` integer
- `offset` integer
- `page` integer
- `type` 'WHATSAPP_OFFICIAL' | 'WHATSAPP' | 'INSTAGRAM'

## Headers

- `api-token` string, required

## Response `200`

A paginated list of channel accounts

- object — V2 paginated response with snake_case keys
  - `status` integer — Response status
  - `total_count` integer — Total items based on current filters
  - `page` integer — Current page
  - `total_pages` integer — Total pages based on current filters
  - `has_next` boolean — Indicates that has next page
  - `has_previous` boolean — Indicates that has previous page
  - `data` ChannelAccount[]
    - `id` string, uuid
    - `created_at` string, date-time
    - `name` string
    - `type` 'WHATSAPP_OFFICIAL' | 'WHATSAPP' | 'INSTAGRAM' — Channel type. WHATSAPP_OFFICIAL = Cloud API (only type that supports sending via this API). WHATSAPP = WhatsApp Web/ZAPI. INSTAGRAM = Instagram Direct.
    - `status` 'CONNECTED' | 'DISCONNECTED' | 'CANCELLED'
    - `avatar` string, nullable
    - `identifier` string, nullable
    - `team_id` string, uuid

## Other responses

- `400` — Invalid type value
- `401` — Authentication error - invalid or missing api-token

---

[API](https://skmtc.net/clint/apis/clint-api.md) · [All operations](https://skmtc.net/clint/apis/clint-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clint/clint-api/revisions/12b8f9eff943/schema)
