Channels
Get Channel
Returns a single channel by ID. Only returns channels owned by the authenticated publisher.
GET
/pub_api/v3/channels/:id
read:channels
Path Parameters
|
idrequired
integer
|
Channel ID. |
Response
Returns the same fields as the List Channels response, wrapped in a data object (not an array).
Request
curl https://developers.cuelinks.com/pub_api/v3/channels/3424 \ -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" } }
404 Not Found
404
{ "error": "Channel not found" }