Produkty Bird

Dziewięć powierzchni. Jedna platforma. Ten sam kształt.

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.

RozpocznijPrzeczytaj dokumentacjęlub

Wszystkie produkty. Dziewięć powierzchni, jeden SDK.

01POST /v1/emails

Email. API e-mail dla programistów, którzy wysyłają też resztę wiadomości.

welcome.tsx
await bird.email.send({
  to: ["alex@example.com"],
  subject: "Welcome to Bird",
  html: "<p>You're in. Let's ship.</p>",
});
02POST /v1/sms

SMS. API SMS dla programistów, którzy naprawdę muszą dostarczać.

notify.ts
await bird.sms.send({
  to: "+15005550006",
  text: "Your code is 847291. Expires in 10 min.",
});
SMS is being upgraded
03POST /v1/voice/calls

Voice. Programowalna telefonia w JSON. Połączenia, IVR, nagrywanie, TTS.

dial.ts
await bird.voice.calls.create({
  to: "+15005550010",
  from: "+14155550199",
  flow: [
    { say: "Your order is confirmed." },
  ],
});
Voice is being upgraded
04POST /v1/whatsapp/messages

WhatsApp. WhatsApp Business API — bez pośredników i zbędnej biurokracji.

message.ts
await bird.whatsapp.send({
  to: "+15005550006",
  type: "text",
  text: { body: "Order confirmed! 🎉" },
});
WhatsApp is being upgraded
05POST /v1/verification

Weryfikacja. API OTP dla programistów, którzy potrzebują niezawodnego dostarczania kodów.

verify.ts
const { id } = await bird.verifications.start({
  to: "+15005550006",
  channel: "sms",
});
await bird.verifications.check({ id, code: userCode });
Verification is being upgraded
06GET /v1/lookup

Lookup. Analiza numeru telefonu: typ linii, operator, sygnały fraudowe.

lookup.ts
const { lineType, carrier, fraud } =
  await bird.lookup.get("+15005550006");
Lookup is being upgraded
07POST /v1/rcs

RCS. RCS Business Messaging — lepiej wyglądający brat SMS.

rich.ts
await bird.rcs.send({
  to: "+15005550006",
  text: "Your order shipped! 📦",
  suggestions: [
    { type: "openUrl", text: "Track it", url },
  ],
});
RCS is being upgraded
08POST /v1/push

Push. Powiadomienia push na iOS, Android i web.

push.ts
await bird.push.send({
  to: { deviceToken },
  notification: {
    title: "Order shipped!",
    body: "Your package is on its way.",
  },
});
Push is being upgraded
09POST /v1/realtime/publish

Realtime. Hosted pub/sub over WebSockets. Subscribe, publish, scale.

realtime.ts
await bird.realtime.publish({
  channel: "orders",
  event: "order.shipped",
  data: { orderId, status: "shipped" },
});
Realtime is being upgraded

Każdy powyższy produkt współdzieli jeden model autoryzacji, jeden kontrakt idempotentności, jedną strukturę błędów, jeden kontrakt webhooków, jeden schemat paginacji kursorowej. Poznaj jedno, a znasz je wszystkie.

/ Auth

/ Idempotency

/ Errors

/ Webhooks

/ Pagination

/ Typed IDs

Zobacz endpointy API

Zacznij od jednego kanału.
Dodaj kolejne, gdy będziesz gotowy.

Testowy klucz API otrzymasz od razu. Dostęp produkcyjny odblokujesz po dodaniu metody płatności i weryfikacji nadawcy.

RozpocznijPrzeczytaj dokumentacjęlub

Using Claude Code, Cursor, or Codex? Point it at our hosted MCP server: curated Bird tools, a browser sign-in, and no API key. Or install the bird-ai plugin.

Cursor