Version 2 of the Lookup API is now available! Lookup v2 has an improved developer experience and exciting features, such as Twilio Regions support and these new data packages:
You are currently viewing Version 1 content. Lookup v1 will be maintained for the time being, but any new features and development will be on v2. We strongly encourage you to do any new development with Lookup v2. Check out the migration guide or the API v2 Reference for more information.
Twilio Lookup can help you check that phone numbers you receive from your users are real. It can also provide you with the local format of an international phone number.
This guide will show you how to perform both kinds of lookups. You can skip to the carrier and caller name guide to learn about other information Lookup can provide about a phone number.
Given a national phone number and an ISO country code, Lookup will confirm the phone number is valid and return the number in its E.164 format.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchPhoneNumber() {11const phoneNumber = await client.lookups.v112.phoneNumbers("(510)867-5310")13.fetch({ countryCode: "US" });1415console.log(phoneNumber.phoneNumber);16}1718fetchPhoneNumber();
1{2"caller_name": null,3"carrier": null,4"add_ons": null,5"country_code": "US",6"national_format": "(510) 867-5310",7"phone_number": "(510)867-5310",8"url": "https://lookups.twilio.com/v1/PhoneNumbers/+15108675310"9}
If the number is invalid, this request will return an HTTP 404 status code.
If you plan to store the phone number after validating, we recommend storing the full E.164 formatted number returned in the phone number field. Most other Twilio services require the E.164 format for phone numbers.
If you send Lookup an internationally formatted phone number, you can get the correct national format for that phone number from the national format field.
1// Download the helper library from https://www.twilio.com/docs/node/install2const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";34// Find your Account SID and Auth Token at twilio.com/console5// and set the environment variables. See http://twil.io/secure6const accountSid = process.env.TWILIO_ACCOUNT_SID;7const authToken = process.env.TWILIO_AUTH_TOKEN;8const client = twilio(accountSid, authToken);910async function fetchPhoneNumber() {11const phoneNumber = await client.lookups.v112.phoneNumbers("+4402077651182")13.fetch();1415console.log(phoneNumber.nationalFormat);16}1718fetchPhoneNumber();
1{2"caller_name": null,3"carrier": {4"error_code": null,5"mobile_country_code": null,6"mobile_network_code": null,7"name": "Vodafone Business Solutions",8"type": "landline"9},10"country_code": "GB",11"national_format": "020 7765 1182",12"phone_number": "+4402077651182",13"add_ons": null,14"url": "https://lookups.twilio.com/v1/PhoneNumbers/+4402077651182"15}
Though most other Twilio services require the E.164 formatted number, the national format is often better to display to end users.
Lookup can tell you even more about a phone number. Check out the carrier and caller name guide to learn how.