# Chat SDK adds Zernio support

**Published:** April 1, 2026 | **Authors:** Ben Sabic

---

Chat SDK now supports [Zernio](https://zernio.com/), a unified social media API, with the new [Zernio adapter](https://chat-sdk.dev/adapters/vendor-official/zernio). 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:**

```typescript
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](https://docs.zernio.com/resources/integrations/chat-sdk) to get started, browse the [directory](https://chat-sdk.dev/adapters), or build your own [adapter](https://chat-sdk.dev/docs/contributing/building).

**The Complete Guide to Chat SDK**
Learn how Chat SDK works end-to-end: from core concepts to building your first chatbot to deploying it across platforms.
[Read the guide](https://vercel.com/kb/guide/the-complete-guide-to-chat-sdk)

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)