GET /pub_api/v3/channels read:channels
Query parameters
ParameterTypeDescription
page integer Page number. Default: 1.
per_page integer Results per page, 1–100. Default: 30.
Response fields
FieldTypeDescription
data[].id integer Channel ID.
data[].name string Channel display name.
data[].source_url string Channel URL.
data[].category string Channel category label (e.g. "Telegram", "Website / Blog").
data[].status string One of: pending, approved, rejected.
data[].is_default boolean Whether this is the publisher's default channel.
data[].created_at string ISO 8601 timestamp.
Request
curl https://developers.cuelinks.com/pub_api/v3/channels \
  -H "Authorization: Token YOUR_API_KEY"
200 OK 200
{
  "data": [
    {
      "id": 3424,
      "name": "Zingoy",
      "source_url": "https://t.me/zingoy",
      "category": "Telegram",
      "status": "approved",
      "is_default": false,
      "created_at": "2026-03-20T10:00:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 30,
    "total": 1,
    "total_pages": 1,
    "next_page": null,
    "prev_page": null
  }
}