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.
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.
Three steps to your first alert.
Get your key
Send /key to receive your API key in a private message.
Send a request
Paste the key into the curl command above and fire away.
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" }
curl https://t69.me \
-H "X-API-Key: YOUR_KEY" \
-F "message=Report ready" \
-F "file_type=document" \
-F "[email protected]"
Docs for humans and machines.
Ready to wire alerts to Telegram?
Grab a key in chat and drop it into your scripts or services.