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

# Get Telegram Status

> Check if a Telegram account is linked to an agent.

## Authentication

Requires JWT token or Platform API key via `Authorization: Bearer <token>` header.

<ParamField path="id" type="string" required>Agent UUID</ParamField>

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/v1/agent/a1b2c3d4-e5f6-7890-abcd-ef1234567890/telegram/status \
  -H "Authorization: Bearer <token>"
```

## Example Response (Linked)

```json theme={null}
{
  "linked": true,
  "channel_binding": {
    "uuid": "f1e2d3c4-b5a6-7890-abcd-ef1234567890",
    "telegram_user_id": "123456789",
    "telegram_username": "john_doe",
    "created_at": "2026-03-01T10:00:00Z",
    "active": true,
    "queue_mode": "collect"
  }
}
```

## Example Response (Not Linked)

```json theme={null}
{
  "linked": false
}
```

## Status Codes

| Code  | Description                                      |
| ----- | ------------------------------------------------ |
| `200` | Status retrieved successfully                    |
| `401` | Unauthorized - invalid or missing authentication |
| `404` | Agent not found                                  |
