Multi-tenant SaaS platform that connects your Telegram bot with social networks. Post to Facebook, Instagram, Twitter, TikTok and more - all from Telegram!
Each user gets their own Telegram bot. Complete control over your bot token and webhook.
Post to Facebook, Instagram, Twitter, TikTok, LinkedIn, Pinterest - all at once via Ayrshare.
Reply to DMs and comments from all platforms directly through your Telegram bot.
Track post performance, engagement metrics, and audience insights across all platforms.
Each business gets isolated data, separate API keys, and unique webhook URLs.
Full REST API with Laravel Sanctum authentication. Build your own integrations.
# 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"