Skip to main content

Documentation 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.

Call this endpoint after completing the sign-in flow to confirm that authentication succeeded, or on application startup to check whether a previously persisted session is still valid. It performs no side effects — it simply interrogates the internal Telethon client and returns the current authorization state.

Endpoint

GET /is_user_authorized

Authentication

No authentication is required to call this endpoint. It reflects the state of the server-side Telethon session, not a caller identity.

Request

This endpoint accepts no request body and no query parameters.

Response

data
boolean
required
true if the active Telethon session is currently authorized with Telegram; false otherwise.

Status Codes

StatusDescription
200 OKReturns authorization status

Example Request

curl http://localhost:5000/is_user_authorized

Example Responses

{"data": true}

Build docs developers (and LLMs) love