Toll-free

एक 8xx नंबर, US और Canada।

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.

send-otp.ts
200 · 0.4s
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

Hey Ada, your Bird sign-in code is 482917. It'll expire in 10 minutes. Don't share it with anyone.
482917
Delivered

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 नहीं।

  1. 01

    एक नंबर से US और Canada।

    एक ही 8xx नंबर सीमा के दोनों ओर के प्राप्तकर्ताओं तक पहुँचता है, इसलिए आपको हर देश के लिए अलग sender provision और मैनेज करने की ज़रूरत नहीं होती।

  2. 02

    डिफ़ॉल्ट रूप से दोतरफ़ा।

    Point the number's inbound traffic at a webhook and replies arrive as signed events, the same conversational foundation as any Bird number.

  3. 03

    कोई A2P 10DLC ज़रूरी नहीं।

    Toll-free ट्रैफ़िक पूरी तरह 10DLC सिस्टम के बाहर होता है, इसलिए भेजने से पहले फ़ाइल करने के लिए कोई brand-and-campaign registration नहीं होता।

  4. 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.

toll-free.ts
201 · purchased
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 नंबर एक 8xx नंबर होता है (800, 888, 877, और बाकी toll-free प्रीफ़िक्स) जो US और Canada भर में SMS भेजता और प्राप्त करता है। toll-free verification पास करने के बाद यह A2P 10DLC के बिना ही application ट्रैफ़िक ले जाता है।
क्या toll-free नंबरों को 10DLC registration की ज़रूरत होती है?
नहीं। Toll-free नंबर A2P 10DLC सिस्टम के बाहर होते हैं। इसके बजाय वे toll-free verification से गुज़रते हैं, जहाँ carriers नंबर को पूरी वॉल्यूम पर भेजने की अनुमति देने से पहले use case और मैसेज कंटेंट की समीक्षा करते हैं।
क्या toll-free नंबर रिप्लाई प्राप्त कर सकता है?
हाँ। Toll-free नंबर दोतरफ़ा होते हैं: नंबर के inbound को किसी webhook पर रूट करें और रिप्लाई HMAC-signed events के रूप में आते हैं, बिल्कुल किसी भी दूसरे Bird SMS नंबर की तरह।
मुझे इसके बजाय long code कब इस्तेमाल करना चाहिए?
जब आप एक local area code चाहें या आपका US ट्रैफ़िक पहले से A2P 10DLC से गुज़रता हो, तो long code चुनें। Toll-free नंबर तब जीतता है जब आप एक ऐसा 8xx sender चाहते हैं जो 10DLC campaigns रजिस्टर किए बिना US और Canada दोनों को कवर करे।

पूरे महाद्वीप के लिए एक verified नंबर।

Toll-free, Bird SMS नंबरों की सतह पर एक sender प्रकार है। एक 8xx नंबर provision करें, verification क्लियर करें, और उसी API से inbound रूट करें जिससे आप भेजते हैं।

एक चैनल से शुरुआत करें।
तैयार होने पर बाकी जोड़ें।

एक test API key तुरंत आपकी है। जब आप payment method जोड़ते हैं और sender verify करते हैं, तब production अनलॉक हो जाता है।

Claude Code, Cursor या Codex इस्तेमाल कर रहे हैं? एक setup prompt कॉपी करें और आपका agent आपके लिए Bird CLI और skills इंस्टॉल कर देगा। अपना चुनें:

Cursor