Updated August 2026 — Covers the NEW 1console.twilio.com
Twilio launched a completely redesigned console in May 2026 at 1console.twilio.com. Every other guide online still shows the old interface. These guides are verified against the new console as of August 2026.

Help Center / Emergency Address (E911)

Setting Up E911 Emergency Address on Twilio

A physical address the FCC requires be on file for any number capable of making or receiving calls, so a 911 dispatcher knows where to send help if it's ever used for an emergency call.

1

Why it's required

FCC rules require any interconnected VoIP number (which is what a Twilio number is) to have a registered emergency address, so 911 services can locate the caller the same way they can for a traditional landline. This applies even if you never plan to actually use the number for voice calls.

2

The penalty for skipping it

Twilio charges $75 per emergency call placed from a number with no emergency address on file, on top of whatever actually happens on the call. It costs nothing to add one — there's no reason to leave this unset.

3

Adding it via Linxi Settings (recommended)

Linxi Settings has its own Emergency Address section. Enter your address once and Linxi handles the underlying Twilio API calls for you — no need to touch the Twilio Console at all.

💡 Using Linxi Settings → Emergency Address is the easiest path for most people — it's a form, not an API call, and it's scoped to exactly the number your workspace already has configured.
4

Adding it manually (if you're scripting your own setup)

If you're provisioning numbers outside Linxi, or the console UI isn't cooperating, the Node.js Twilio SDK can assign an existing Address SID directly:

node -e " require('dotenv').config(); const twilio = require('twilio'); const client = twilio(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN); client.incomingPhoneNumbers .list({ phoneNumber: '+1XXXXXXXXXX' }) .then(nums => client.incomingPhoneNumbers(nums[0].sid).update({ emergencyAddressSid: 'ADxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' })) .then(n => console.log('Done:', n.emergencyAddressSid)) .catch(e => console.log('Error:', e.message)); "
5

What address to use

Must be a real, physical street address — not a PO Box. It doesn't need to be your business's official registered address; it just needs to be somewhere a first responder could actually be dispatched to.

6

Reusing the same address for multiple numbers

Once you've created an Address resource on Twilio (it gets its own AD… SID), you can assign that same Address SID to as many numbers as you own at that location — no need to re-enter the address every time you add a new number.