---
title: "List channels for a cycler"
method: GET
path: "/cyclers/{cycler_id}/channels"
tags: ["Cyclers", "Channels"]
---

# List channels for a cycler

`GET /cyclers/{cycler_id}/channels`

List channels for a cycler with pagination and filtering.

Filter parameters support Supabase filter operators:
- Text fields (name, id_text, created_by_email): use ``ilike.%value%`` for
  partial match
- Date fields: use ``gte.value``, ``lte.value``, etc.
- Date range: use created_at_gt and created_at_lt for between queries

``q`` is the free-text search box's param: it narrows on channel name substring
plus a prefix full-text match over ``search_vector``, and composes with the
column filters above.

## Path parameters

- `cycler_id` string, required

## Query parameters

- `limit` integer
- `offset` integer
- `q` string, nullable — Free-text search on channel name plus prefix full-text match, matching the global search. Composes with the column filters.
- `id_text` string, nullable
- `name` string, nullable
- `created_by_email` string, nullable
- `created_at` string, nullable
- `created_at_gt` string, nullable
- `created_at_lt` string, nullable
- `updated_at` string, nullable
- `updated_at_gt` string, nullable
- `updated_at_lt` string, nullable
- `order_by` 'name' | 'created_at' | 'updated_at'
- `order` 'asc' | 'desc'

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/ionworks/apis/fastapi.md) · [All operations](https://skmtc.dev/ionworks/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ionworks/fastapi/revisions/7337a3cbdaf2/schema)
