Connect Telegram to Social Media

Multi-tenant SaaS platform that connects your Telegram bot with social networks. Post to Facebook, Instagram, Twitter, TikTok and more - all from Telegram!

Get Started Check API Status

Powerful Features

🤖

Your Own Telegram Bot

Each user gets their own Telegram bot. Complete control over your bot token and webhook.

📱

Multi-Platform Posting

Post to Facebook, Instagram, Twitter, TikTok, LinkedIn, Pinterest - all at once via Ayrshare.

💬

Message Management

Reply to DMs and comments from all platforms directly through your Telegram bot.

📊

Analytics

Track post performance, engagement metrics, and audience insights across all platforms.

🔐

Multi-Tenant

Each business gets isolated data, separate API keys, and unique webhook URLs.

REST API

Full REST API with Laravel Sanctum authentication. Build your own integrations.

Supported Platforms via Ayrshare

📘 📷 🐦 🎵 💼 📌 ▶️

Quick Start API

# 1. Register your account
curl -X POST https://telegrambot.zira.pl/api/auth/register \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Your Name",
    "email": "you@example.com",
    "password": "SecurePass@123",
    "password_confirmation": "SecurePass@123",
    "business_name": "Your Business"
  }'

# 2. Configure Telegram Bot (get token from @BotFather)
curl -X PUT https://telegrambot.zira.pl/api/tenant \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "telegram_bot_token": "BOT_TOKEN",
    "telegram_bot_username": "your_bot"
  }'

# 3. Setup webhook and start posting!
curl -X POST https://telegrambot.zira.pl/api/tenant/telegram/webhook \
  -H "Authorization: Bearer YOUR_TOKEN"