WhatsApp for developers
Build with the Notibuzz Cloud API. Send messages, manage sessions, and scale your WhatsApp integration in minutes.
Install
Instala el SDK de JavaScript/TypeScript.
npm install @notibuzz/noti-sdk-jsSend your first message
Configura el cliente y envía un mensaje de texto con el SDK.
import { configureClient, sendMessage } from '@notibuzz/noti-sdk-js'
configureClient({
notiUrl: process.env.NOTI_URL!,
notiApiKey: process.env.NOTI_KEY!
})
const result = await sendMessage({
body: {
type: 'text',
payload: {
session: 'default',
chatId: '51987654321@c.us',
text: 'Hello from the API! 📱'
}
}
})
console.log('Sent:', result)Explore
Elige una categoría en el menú para ver los endpoints.
