Bot platform
Apply → sbot_ token → webhook or getUpdates → ship with the official Node/Java SDKs. Telegram-like method surface.
SoChat · Open Platform
Bot API, webhooks, and official SDKs—searchable docs, a real console, shortest path to ship.
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
Docs explain integration; the console handles applications, credentials, and debugging.
Apply → sbot_ token → webhook or getUpdates → ship with the official Node/Java SDKs. Telegram-like method surface.