Buko Developer Docs
Welcome to the Buko developer documentation.
Buko is a private messenger. Developer APIs are intentionally narrow: Buko provides the messaging channel, identity, delivery, permissions, and quotas. Your agent or service provides the actual intelligence and business logic.
Available APIs
- Bot API lets an external agent receive Buko messages and send replies through a bot account.
Production URLs
| Service | URL |
|---|---|
| Developer docs | https://im.buko.app/dev-docs/ |
| Bot API base | https://ims.buko.app |
| Bot Gateway WebSocket | wss://ims.buko.app/bot/ws |
| Web app | https://web.buko.app |
Bot API in one minute
export BUKO_BOT_TOKEN="bot_xxx"
curl -sS https://ims.buko.app/bot/getMe \
-X POST \
-H "Authorization: Bot $BUKO_BOT_TOKEN" \
-H "Content-Type: application/json"
Then use either Bot Gateway WebSocket for realtime updates or polling for simple deployments.