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.`,
}).safe();
if (error) throw error;
console.log(data.id);
// → "sms_4kT01Lq2m..."Today at 2:14 PM
When a toll-free number fits.
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.
What a toll-free number gives you.
Cross-border reach, two-way traffic, no 10DLC.
- 01
US and Canada from one number.
A single 8xx number reaches recipients on both sides of the border, so you don't provision and manage a separate sender per country.
- 02
Two-way by default.
Point the number's inbound traffic at a webhook and replies arrive as signed events — the same conversational foundation as any Bird number.
- 03
No A2P 10DLC needed.
Toll-free traffic sits outside the 10DLC system entirely, so there's no brand-and-campaign registration to file before you send.
- 04
Cleared through toll-free verification.
Carriers review the use case and message content first; once verification clears, the number sends at full volume rather than throttled or filtered.
Buy one and start sending.
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 is part of the deal.
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
What is a toll-free SMS number?+
Do toll-free numbers need 10DLC registration?+
Can a toll-free number receive replies?+
When should I use a long code instead?+
Other ways to send
Toll-free is one of four sender types. Compare the rest.
One verified number for the whole continent.
Toll-free is one sender type on the Bird SMS numbers surface. Provision an 8xx number, clear verification, and route inbound from the same API you send with.