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 code = generateOtp();
const { data, error } = await bird.sms.send({
from: "Bird",
to: "+15005550006",
text: `Your Bird verification code is ${code}. Reply STOP to opt out.`,
category: "authentication",
}).safe();
if (error) throw error;
console.log(data.id);
// → "sms_4kT01Lq2m..."
Today at 2:14 PM
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, buy the number, and route its inbound at a webhook, the same client you send with. The same code shape provisions any sender type; only the type field changes.
const { data: available } = await bird.numbers.search({
country: "US",
type: "toll-free",
capabilities: ["sms"],
}).safe();
const { data: number } = await bird.numbers.buy({
number: available[0].number,
webhook: "https://example.com/webhooks/bird",
}).safe();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.
Toll-free FAQ
Toll-free SMS नंबर क्या है?
क्या toll-free नंबरों को 10DLC registration की ज़रूरत होती है?
क्या toll-free नंबर रिप्लाई प्राप्त कर सकता है?
मुझे इसके बजाय long code कब इस्तेमाल करना चाहिए?
भेजने के दूसरे तरीके
Toll-free चार sender प्रकारों में से एक है। बाकी की तुलना करें।
पूरे महाद्वीप के लिए एक verified नंबर।
Toll-free, Bird SMS नंबरों की सतह पर एक sender प्रकार है। एक 8xx नंबर provision करें, verification क्लियर करें, और उसी API से inbound रूट करें जिससे आप भेजते हैं।