---
title: "List chat channels"
method: GET
path: "/chat_channels"
tags: ["Chat channels"]
---

# List chat channels

`GET /chat_channels`

Returns a paginated list of chat channels within a specific company, with optional filtering by product.

Required permissions:
 - `chat:read`

## Query parameters

- `after` string, nullable — Returns the elements in the list that come after the specified cursor.
- `before` string, nullable — Returns the elements in the list that come before the specified cursor.
- `first` integer, nullable — Returns the first _n_ elements from the list.
- `last` integer, nullable — Returns the last _n_ elements from the list.
- `company_id` string, required — The unique identifier of the company to list chat channels for.
- `product_id` string, nullable — The unique identifier of a product to filter by. When set, only chat channels connected to this product are returned.

## Response `200`

A successful response

- object — The connection type for ChatFeed.
  - `data` ChatChannelListItem[], required — A list of nodes.
    - `ban_media` boolean, required — Whether media uploads such as images and videos are blocked in this chat.
    - `ban_urls` boolean, required — Whether URL links are blocked from being posted in this chat.
    - `banned_words` string[], required — A list of words that are automatically filtered from messages in this chat.
    - `experience` object, required — The experience this chat feed is attached to.
      - `id` string, required — The unique identifier for the experience.
      - `name` string, required — The display name of this experience shown to users in the product navigation. Maximum 255 characters.
    - `id` string, required — The unique identifier for the entity
    - `user_posts_cooldown_seconds` integer, nullable, required — The minimum number of seconds a user must wait between consecutive messages. Null if no cooldown is enforced.
    - `who_can_post` 'everyone' | 'admins', required — Who can post on a chat feed
    - `who_can_react` 'everyone' | 'no_one', required — Who can react on a chat feed
  - `page_info` PageInfo, required — Information about pagination in a connection.
    - `end_cursor` string, nullable, required — When paginating forwards, the cursor to continue.
    - `has_next_page` boolean, required — When paginating forwards, are there more items?
    - `has_previous_page` boolean, required — When paginating backwards, are there more items?
    - `start_cursor` string, nullable, required — When paginating backwards, the cursor to continue.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not found
- `422` — Verification required
- `429` — Too many requests
- `500` — Internal server error

---

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