This endpoint sends aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/OPENNOVA2026/telegram-connector/llms.txt
Use this file to discover all available pages before exploring further.
JoinChannelRequest via Telethon to add the authenticated account to the specified public channel. On success it returns the full channel object for the channel that was just joined.
Endpoint
Authentication
Requires an active Telethon session on the server. UnlikeGET /channels, this endpoint always uses the real Telegram client — FakeClient is never used regardless of the API_ID setting.
Query Parameters
The public username of the Telegram channel to join, without the leading
@ (e.g. durov, telegram). Must resolve to a valid, accessible public channel.Request Body
None.Response
The full channel object for the channel that was joined.
Status Codes
| Status | Description |
|---|---|
201 Created | The authenticated account successfully joined the channel. The full channel object is returned. |
400 Bad Request | The channel username was not found or is invalid. Raised from a ValueError returned by Telethon. |
429 Too Many Requests | Telegram’s flood-wait protection was triggered. The detail field contains the number of seconds to wait before retrying. |