A toll-free number is an 8xx number that sends and receives SMS across the US and Canada. It carries application traffic without A2P 10DLC, once it has cleared toll-free verification, which buys higher, more predictable throughput than an unregistered long code.
import { BirdClient } from "@messagebird/sdk";
const bird = new BirdClient({ apiKey: process.env.BIRD_API_KEY! });
const { data, error } = await bird.sms.send({
from: "Bird",
to: "+31612345678",
text: "Your order #4821 has shipped. Track it: bird.ly/t/4821x",
category: "transactional",
}).safe();
if (error) throw error;
console.log(data.id);
// → "sms_01m11jw130e7svjzv70kgqr38w"
Toll-free नंबर कब फ़िट बैठता है।
Toll-free is one of the four sender types on Bird SMS numbers, part of the broader Bird SMS API. Reach for it when one number should cover both the US and Canada and you'd rather skip A2P 10DLC registration: verification handles the carrier review instead.
Toll-free नंबर आपको क्या देता है।
सीमा-पार पहुँच, दोतरफ़ा ट्रैफ़िक, कोई 10DLC नहीं।
- 01
एक नंबर से US और Canada।
एक ही 8xx नंबर सीमा के दोनों ओर के प्राप्तकर्ताओं तक पहुँचता है, इसलिए आपको हर देश के लिए अलग sender provision और मैनेज करने की ज़रूरत नहीं होती।
- 02
डिफ़ॉल्ट रूप से दोतरफ़ा।
Point the number's inbound traffic at a webhook and replies arrive as signed events, the same conversational foundation as any Bird number.
- 03
कोई A2P 10DLC ज़रूरी नहीं।
Toll-free ट्रैफ़िक पूरी तरह 10DLC सिस्टम के बाहर होता है, इसलिए भेजने से पहले फ़ाइल करने के लिए कोई brand-and-campaign registration नहीं होता।
- 04
Toll-free verification से क्लियर।
Carriers पहले use case और मैसेज कंटेंट की समीक्षा करते हैं; verification क्लियर होते ही नंबर throttled या filtered होने के बजाय पूरी वॉल्यूम पर भेजता है।
एक खरीदें और भेजना शुरू करें।
Search by country and capability and buy the number, the same client you send with. Inbound traffic is routed by a workspace webhook subscribed to sms.received, not per number. The same code shape provisions any sender type; only number_type changes.
const { data: page, error: searchError } = await bird.numbers.available
.list({
country_code: "US",
number_type: "toll_free",
capabilities: ["sms"],
})
.safe();
if (searchError) throw searchError;
const { data: order, error: orderError } = await bird.numbers.orders
.create({ number: page.data[0].number })
.safe();
if (orderError) throw orderError;
console.log(order.status, order.number_id); // → "completed" "nda_0ydh2yfw..."
Verification सौदे का हिस्सा है।
Before a toll-free number can send application traffic, it goes through toll-free verification: the carriers review your use case, sample messages, and opt-in before approving the number. Bird files the verification from the dashboard and reports its status through the API, so you know exactly when the number is cleared. If your US traffic already runs over A2P 10DLC, a long code is the alternative sender.
Put it into practice.
Continue with the documentation, guides and examples for this topic. Resources are in English.
भेजने के दूसरे तरीके
Toll-free चार sender प्रकारों में से एक है। बाकी की तुलना करें।
पूरे महाद्वीप के लिए एक verified नंबर।
Toll-free, Bird SMS नंबरों की सतह पर एक sender प्रकार है। एक 8xx नंबर provision करें, verification क्लियर करें, और उसी API से inbound रूट करें जिससे आप भेजते हैं।