---
URL: "https://docs.quaily.com/developer/api/channel.html"
LLMS_URL: "https://docs.quaily.com/developer/api/channel.md"
description: "The API for managing channels of a Quaily account"
---

# Channel API

## Get Channel Information

```prolog
GET API_BASE/lists/:channel_slug
```

### Parameters

| Parameter      | Type   | Description             |
| -------------- | ------ | ----------------------- |
| `channel_slug` | string | The slug or numeric ID of the channel |

### Response

```json
{
  "data": ChannelObject,
  "ts": 1723923923
}
```

## Get User's Channels

```prolog
GET API_BASE/users/:user_id/lists
```

### Parameters

| Parameter | Type | Description        |
| --------- | ---- | ------------------ |
| `user_id` | int  | The ID of the user |

### Response

```json
{
  "data": [ChannelObject, ...],
  "ts": 1723923923
}
```
