/v1/telegram/channelGet a public channel
Returns a public channel by username: title, description, subscriber count, verification badge and avatar. Returns `404 NOT_FOUND` when no public channel uses that username. Records are cached briefly and shared with `/messages`.
| channel* | object |
| id* | integer |
| username* | string |
| url* | string · uri |
| title* | string |
| description* | string | null |
| type* | string |
| verified* | boolean |
| subscribers* | integer |
| image_url* | string · uri | null |
Platform fields, identical on every endpoint — what they mean.
curl "https://api.endpointry.com/v1/telegram/channel?channel=telegram" \
-H "Authorization: Bearer sk_live_..."{
"meta": {
"request_id": "req_7729f93d3facf68ff83e5c50",
"as_of": "2026-08-02T12:00:00.000Z",
"cache": "MISS"
},
"data": {
"channel": {
"id": 1005640892,
"username": "telegram",
"url": "https://t.me/telegram",
"title": "Telegram News",
"description": "The official Telegram on Telegram. Much recursion. Very Telegram. Wow.",
"type": "channel",
"verified": true,
"subscribers": 9929948,
"image_url": "https://cdn1.telesco.pe/file/OlYOPa0mOv6odATduwSNDRktKzZ7zDgL.jpg"
}
}
}