Skip to content

Chat SDK adds Zernio support

1 min read

Chat SDK now supports Zernio, a unified social media API, with the new Zernio adapter. This is an official vendor adapter built and maintained by the Zernio team.

Teams can build bots that work across Instagram, Facebook, Telegram, WhatsApp, X/Twitter, Bluesky, and Reddit through a single integration.

Try the Zernio adapter today:

import { Chat } from "chat";
import { createZernioAdapter } from "@zernio/chat-sdk-adapter";
const bot = new Chat({
adapters: {
zernio: createZernioAdapter(),
},
});
bot.onNewMention(async (thread, message) => {
const platform = message.raw.platform;
await thread.post(`Hello from ${platform}!`);
});

Feature support varies by platform; rich cards work on Facebook, Instagram, Telegram, and WhatsApp, while editing and streaming are currently limited to Telegram.

Read the documentation to get started, browse the directory, or build your own adapter.