Skip to main content
Send static or animated stickers in WEBP format. Static stickers: 100KB max. Animated stickers: 500KB max.
import { WhatsAppClient } from '@kapso/whatsapp-cloud-api';

const client = new WhatsAppClient({
  baseUrl: 'https://api.kapso.ai/meta/whatsapp',
  kapsoApiKey: process.env.KAPSO_API_KEY!
});

await client.messages.sendSticker({
  phoneNumberId: '647015955153740',
  to: '15551234567',
  sticker: {
    id: '798882015472548'
  }
});
await client.messages.sendSticker({
  phoneNumberId: '647015955153740',
  to: '15551234567',
  sticker: {
    link: 'https://example.com/sticker.webp'
  }
});