---
title: "Get list of public talk channels"
method: GET
path: "/service_agents/talk_channels"
tags: ["Service Agent"]
---

# Get list of public talk channels

`GET /service_agents/talk_channels`

Returns a list of all public "talk" type channels for the customer.
This endpoint is for discovering available public channels that the agent can join.
Unlike /service_agents/talk_chats which returns only joined chats, this returns all public channels regardless of participation.

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

A list of public talk channels.

- object
  - `next_page_token` string — Cursor token for the next page of results. Pass this value as the page_token parameter in the next request.
  - `result` TalkManagerTalk[]
    - `id` string, uuid — The unique identifier of the talk. Returned from the `POST /service_agents/talk_chats` or `GET /service_agents/talk_chats` response.
    - `customer_id` string, uuid — The unique identifier of the customer who owns this talk. Returned from the `GET /customers` response.
    - `type` 'direct' | 'group' | 'talk' — Type of the talk.
    - `name` string — Talk name (optional).
    - `detail` string — Talk description/detail (optional).
    - `member_count` integer — Number of participants in this chat.
    - `tm_create` string, date-time — Timestamp when the talk was created.
    - `tm_update` string, date-time — Timestamp when the talk was last updated.
    - `tm_delete` string, date-time — Timestamp when the talk was deleted.

## Other responses

- `401` — Authentication required (UNAUTHENTICATED).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
