Telegram API Gateway
Ship alerts to Telegram in seconds.
MessageGateBot gives you a single HTTP endpoint to deliver alerts, logs, and files to your private chats and groups.
Quickstart
POST /
curl https://t69.me \
-H "X-API-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"message":"Deploy complete"}'
Authorization: Bearer also works. Use multipart/form-data for files.
Key management in chat
Retrieve or rotate keys with /key and /newkey commands inside Telegram.
HTML message support
Send bold, italic, and rich formatting with Telegram HTML parsing.
Files and photos
Attach images or documents for reports, logs, or dashboards.
Private delivery
Your data stays in your chat. No extra storage or analytics.
API Docs
One endpoint. Predictable payloads.
Endpoint
POST https://t69.me/
Send text, photos, or documents with the same route.
Authentication
Recommended headers:
X-API-KeyAuthorization: Bearer
Payload
message is required for every request.
file(optional)file_typerequired when file is present
Response
Success payload:
{ "status": "success" }
Multipart example
file upload
curl https://t69.me \
-H "X-API-Key: YOUR_KEY" \
-F "message=Report ready" \
-F "file_type=document" \
-F "[email protected]"
Developer Tools
Docs for humans and machines.
Ready to wire alerts to Telegram?
Grab a key in chat and drop it into your scripts or services.