Buko Docs

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

Production URLs

ServiceURL
Developer docshttps://im.buko.app/dev-docs/
Bot API basehttps://ims.buko.app
Bot Gateway WebSocketwss://ims.buko.app/bot/ws
Web apphttps://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.