Bird Products
आपके चैनल। आपका ग्राहक। एक प्लेटफ़ॉर्म।
ईमेल, मैसेजिंग, वॉइस और कनेक्टिविटी पर निर्माण करें। डेवलपर API और नेटिव ग्राहक वार्तालाप देखें, साथ ही हर उत्पाद के सेटअप, एक्सेस और इंटीग्रेशन के लिए गाइड पाएँ।
सभी products. अपने ग्राहक के लिए सही अनुभव खोजें।
Email. उन developers के लिए email API जो बाकी message भी ship करते हैं।
await bird.email.send({
from: "hello@yourdomain.com",
to: ["alex@example.com"],
subject: "Welcome to Bird",
html: "<p>You're in. Let's ship.</p>",
});Mailbox. Mailbox API उन एजेंटों के लिए जो अपना ईमेल खुद संभालते हैं।
curl -X POST https://us1.platform.bird.com/v1/email/mailboxes \
-H "Authorization: Bearer $BIRD_API_KEY" \
-d '{"domain": "inbox.ai", "receive_policy": "open"}'
{
"id": "mbx_01krdgeqcxet5s7t44vh8rt9mg",
"address": "k7mq3vx2npr5wcj4tzh6@inbox.ai",
"state": "active"
}
SMS. उन developers के लिए SMS API जिन्हें वाकई ship करना है।
await bird.sms.send({
to: "+15005550006",
text: "Your code is 847291. Expires in 10 min.",
category: "authentication",
});Voice. SIP ट्रंकिंग, हर कॉल पर रिकॉर्ड और इवेंट के साथ।
const leg = await bird.voice.legs.get("vcl_01k0p3v9wera3v6q6xw3e9y2mh");
leg.status; // "answered" | "no_answer" | "ringing" | …
WhatsApp. WhatsApp API से दुनिया भर के ग्राहकों से जुड़ें।
await bird.whatsapp.send({
from: "+15557654321",
to: "+15005550006",
text: { body: "Order confirmed! 🎉" },
});Verify. उन developers के लिए OTP API जिन्हें codes का पहुँचना जरूरी है।
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. भेजने से पहले फ़ोन नंबर या ईमेल पता जाँच लें।
await bird.lookup.phoneNumber({
phone_number: "+31612345678",
});RCS. RCS for Business API, SMS का बेहतर दिखने वाला भाई-बहन।
await bird.rcs.send({
to: "+15005550006",
text: "Your order shipped! 📦",
suggestions: [
{ type: "openUrl", text: "Track it", url },
],
});Push. iOS, Android, और web के लिए push notifications।
await bird.push.send({
to: { deviceToken },
notification: {
title: "Order shipped!",
body: "Your package is on its way.",
},
});Realtime. WebSockets पर hosted pub/sub। Subscribe करें, publish करें, scale करें।
await bird.realtime.publish("rap_01krdgeqcxet5s7t44vh8rt9mg", {
channels: ["orders"],
event: "order.shipped",
data: { orderId, status: "shipped" },
});
eSIM. मोबाइल प्लान, ट्रैवल डेटा और कर्मचारी कनेक्टिविटी — आपके ब्रांड के तहत।
Apple Messages. Messages ऐप में नेटिव विकल्प, अपॉइंटमेंट और सेवा।
Bird की सार्वजनिक API परिचित प्रमाणीकरण, त्रुटियों और पेजिनेशन का उपयोग करती हैं। समर्थित ऑपरेशन, अनुमतियों और इंटीग्रेशन आवश्यकताओं के लिए उत्पाद गाइड देखें।
/ Auth
/ Idempotency
/ Errors
/ Webhooks
/ Pagination
/ Typed IDs
व्यवहार में लाएँ।
इस विषय के लिए डॉक्यूमेंटेशन, गाइड और उदाहरणों के साथ आगे बढ़ें। संसाधन अंग्रेज़ी में हैं।