Bird Products
Negen oppervlakken. Eén platform. Dezelfde structuur.
Email, SMS, Voice, WhatsApp, Verify, Lookup, RCS, Push en Realtime — elk een eersteklas API. Dezelfde authenticatie, dezelfde idempotentie, dezelfde webhooks, dezelfde foutstructuur. Leer er één, en u kent ze allemaal.
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! 🎉" },
});Verify. De OTP-API voor ontwikkelaars die willen dat codes aankomen.
await bird.verify.verifications.create({
to: { phone_number: "+15005550006" },
});
// check by target — no id to store
await bird.verify.verifications.check({
to: { phone_number: "+15005550006" }, 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. Gehoste pub/sub via WebSocket. Abonneren, publiceren, schalen.
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