Built for third-party builders

Bot API, webhooks, and official SDKs—searchable docs, a real console, shortest path to ship.

bot.ts
import { StarIMBot } from '@starim-io/bot-sdk'

const bot = new StarIMBot({
  token: process.env.SOCHAT_BOT_TOKEN!,
  baseUrl: process.env.SOCHAT_API_BASE!,
})

bot.on('message', async (ctx) => {
  const text = ctx.message?.text
  if (text) await ctx.reply(text)
})

bot.startPolling()

Official SDK; point baseUrl at your gateway

Start with the bot platform

Docs explain integration; the console handles applications, credentials, and debugging.

Bot platform

Apply → sbot_ token → webhook or getUpdates → ship with the official Node/Java SDKs. Telegram-like method surface.

Sign in to the console first if you already have an account

Tokens, webhooks, and delivery logs live in the console. Press ⌘K in docs to find methods.