Create Telegram Link Code
curl --request POST \
--url https://api.app.shinzo.ai/v1/agent/{id}/telegram/link \
--header 'Authorization: Bearer <token>'Agent Channels
Create Telegram Link Code
Generate a code to pair a Telegram account with an agent.
POST
/
v1
/
agent
/
{id}
/
telegram
/
link
Create Telegram Link Code
curl --request POST \
--url https://api.app.shinzo.ai/v1/agent/{id}/telegram/link \
--header 'Authorization: Bearer <token>'Authentication
Requires JWT token or Platform API key viaAuthorization: Bearer <token> header.
string
required
Agent UUID
Example Request
curl -X POST https://api.app.shinzo.ai/v1/agent/a1b2c3d4-e5f6-7890-abcd-ef1234567890/telegram/link \
-H "Authorization: Bearer <token>"
Example Response
{
"code": "A1B2C3",
"expires_at": "2026-03-09T10:10:00Z",
"instructions": "Send '/link A1B2C3' as a message to your agent's Telegram bot"
}
How It Works
- Call this endpoint to generate a 6-character link code.
- The code expires after 10 minutes.
- Send
/link <CODE>as a message to your agent’s Telegram bot. - Once linked, you can send messages to your agent directly through Telegram.
Prerequisites
- Your agent must have a
telegram_bot_tokenconfigured (set during agent creation or update) - You must have a Telegram bot created via @BotFather
Status Codes
| Code | Description |
|---|---|
200 | Link code generated successfully |
401 | Unauthorized - invalid or missing authentication |
404 | Agent not found |
400 | Agent does not have Telegram configured |

