Developer portal
Bot API workbench
Each screen solves one narrow question: onboarding, creation, attachment, delivery health, keys, channels, reference, or a manual request run.
Sign in to inspect Bot API owner data
Operational pages read your current web session token from the browser and then call the owner-side Bot API endpoints.
Quick start
Use the current owner token in the app and follow the shortest path to the first working bot.
- Create a bot with `POST /v1/bot-api/bots`.
- Attach it to an owned channel with `POST /v1/bot-api/bots/{id}/channels/{channelId}`.
- Point webhook delivery to your handler with `PUT /v1/bot-api/bots/{id}/webhook`.
- Verify runtime from stats and webhook status pages.
curl -X POST https://api.yullama.ru/v1/bot-api/bots \
-H "Authorization: Bearer <owner_token>" \
-H "Content-Type: application/json" \
-d '{"username":"news_tatarstan_bot","display_name":"News Bot","description":"Publishes verified news"}'After the first publish
Use the bot token against channel posting and watch health here instead of digging in logs first.