Bird Products
Negen oppervlakken. Eén platform. Dezelfde structuur.
Email, SMS, Voice, WhatsApp, Verifications, Lookup, RCS, Push, and Realtime — each a first-class API. Same auth, same idempotency, same webhooks, same error envelope. Learn one, you've learned them all.
Alle producten. Negen oppervlakken, één SDK.
Email. De email-API voor ontwikkelaars die ook de rest van het bericht versturen.
await bird.email.send({
to: ["alex@example.com"],
subject: "Welcome to Bird",
html: "<p>You're in. Let's ship.</p>",
});SMS. De SMS-API voor ontwikkelaars die echt moeten shippen.
await bird.sms.send({
to: "+15005550006",
text: "Your code is 847291. Expires in 10 min.",
});Voice. Programmeerbare voice in JSON. Gesprekken, IVR, opname, TTS.
await bird.voice.calls.create({
to: "+15005550010",
from: "+14155550199",
flow: [
{ say: "Your order is confirmed." },
],
});WhatsApp. De WhatsApp Business API, zonder het BSP-gedoe.
await bird.whatsapp.send({
to: "+15005550006",
type: "text",
text: { body: "Order confirmed! 🎉" },
});Verificatie. De OTP-API voor ontwikkelaars die willen dat codes aankomen.
const { id } = await bird.verifications.start({
to: "+15005550006",
channel: "sms",
});
await bird.verifications.check({ id, code: userCode });Lookup. Telefoonnummerintelligentie: lijntype, provider, fraudesignalen.
const { lineType, carrier, fraud } =
await bird.lookup.get("+15005550006");RCS. RCS Business Messaging — het knapere broertje van SMS.
await bird.rcs.send({
to: "+15005550006",
text: "Your order shipped! 📦",
suggestions: [
{ type: "openUrl", text: "Track it", url },
],
});Push. Pushmeldingen voor iOS, Android en web.
await bird.push.send({
to: { deviceToken },
notification: {
title: "Order shipped!",
body: "Your package is on its way.",
},
});Realtime. Hosted pub/sub over WebSockets. Subscribe, publish, scale.
await bird.realtime.publish({
channel: "orders",
event: "order.shipped",
data: { orderId, status: "shipped" },
});Elk bovenstaand product deelt één auth-model, één idempotency-contract, één fout-envelop, één webhook-contract, één cursor-paginatieschema. Leer er één, en u kent ze allemaal.
/ Auth
/ Idempotency
/ Errors
/ Webhooks
/ Pagination
/ Typed IDs