> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Telegram Status



## OpenAPI

````yaml get /telegram/status
openapi: 3.1.0
info:
  title: Agno API Reference
  description: The all-in-one, private, secure agent platform that runs in your cloud.
  version: 2.7.2
servers: []
security: []
paths:
  /telegram/status:
    get:
      tags:
        - Telegram
      summary: Telegram Status
      operationId: telegram_status_simple-agent
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TelegramStatusResponse'
components:
  schemas:
    TelegramStatusResponse:
      properties:
        status:
          type: string
          title: Status
          default: available
      type: object
      title: TelegramStatusResponse

````