Skip to contentSkip to navigationSkip to topbar
On this page

Line Type Intelligence


(warning)

Public Beta

Line Type Intelligence is in Public Beta. The information in this document might change as we add or update features before the product becomes Generally Available. Public Beta products don't have a Service Level Agreement (SLA).

Use Line Type Intelligence to identify the carrier and phone line type, such as mobile, landline, fixed VoIP, non-fixed VoIP, toll free, and more. For example, you can filter out landline numbers from a list before sending SMS messages.


Coverage

coverage page anchor

Line Type Intelligence is available for phone numbers worldwide.

Note: Canadian phone numbers require special approval. Learn how to request access to Canadian Number Portability Administration Center (NPAC) data(link takes you to an external page). Querying a Canadian phone number without access will return a 60601 error.


Run Line Type Intelligence

run-line-type-intelligence page anchor

Make a GET /v2/PhoneNumbers/{PhoneNumber} request with the Fields=line_type_intelligence query parameter.

1
curl -X GET "https://lookups.twilio.com/v2/PhoneNumbers/{PhoneNumber}?Fields=line_type_intelligence" \ -u
2
$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

The response includes the line_type_intelligence object, which includes the following properties:

PropertyDescription
mobile_country_codeThe three-digit mobile country code of the carrier, used with the mobile_network_code to identify a mobile network operator.
mobile_network_codeThe two- or three-digit mobile network code of the carrier, used with the mobile country code to identify a mobile network operator. This is only returned for mobile numbers.
carrier_nameThe name of the carrier.
typeThe phone number type.
error_codeThe error code. If there's no error, this value will be null.

type property values

type-property-values page anchor
(warning)

Warning

Carrier data isn't available for phone number types: personal, tollFree, premium, sharedCost, uan, voicemail, pager, or unknown. In these cases mobile_country_code, mobile_network_code, and carrier_name values will be null.

The following are the possible values for the type property.

ValueDescription
landlineA landline number that generally can't receive SMS messages.
mobileA mobile number that generally can receive SMS messages.
fixedVoipA virtual phone number associated with a physical device. For example, Comcast or Vonage.
nonFixedVoipA virtual phone number obtained online without requiring a physical device. For example, Google Voice or Enflick.
personalA phone number designated for personal use.
tollFreeA toll-free phone number where calls are free for the calling party.
premiumA premium-rate phone number. These numbers typically charge higher-than-normal rates for special services.
sharedCostA shared cost phone number. The calling party and number subscriber share the charges. These numbers charge higher-than-normal rates.
uanA universal access number. This is a national number that can route incoming calls to different destinations.
voicemailA phone number associated with a voicemail service.
pagerA phone number associated with a pager device.
unknownA valid phone number, but the line type is unknown.

Code examples and responses

code-examples-and-responses page anchor
Line Type Intelligence LookupLink to code sample: Line Type Intelligence Lookup
1
// Download the helper library from https://www.twilio.com/docs/node/install
2
const twilio = require("twilio"); // Or, for ESM: import twilio from "twilio";
3
4
// Find your Account SID and Auth Token at twilio.com/console
5
// and set the environment variables. See http://twil.io/secure
6
const accountSid = process.env.TWILIO_ACCOUNT_SID;
7
const authToken = process.env.TWILIO_AUTH_TOKEN;
8
const client = twilio(accountSid, authToken);
9
10
async function fetchPhoneNumber() {
11
const phoneNumber = await client.lookups.v2
12
.phoneNumbers("+14159929960")
13
.fetch({ fields: "line_type_intelligence" });
14
15
console.log(phoneNumber.lineTypeIntelligence);
16
}
17
18
fetchPhoneNumber();

Output

1
{
2
"calling_country_code": "1",
3
"country_code": "US",
4
"phone_number": "+14159929960",
5
"national_format": "(415) 992-9960",
6
"valid": true,
7
"validation_errors": null,
8
"caller_name": null,
9
"sim_swap": null,
10
"call_forwarding": null,
11
"line_status": null,
12
"line_type_intelligence": {
13
"error_code": null,
14
"mobile_country_code": "240",
15
"mobile_network_code": "38",
16
"carrier_name": "Twilio - SMS/MMS-SVR",
17
"type": "nonFixedVoip"
18
},
19
"identity_match": null,
20
"reassigned_number": null,
21
"sms_pumping_risk": null,
22
"phone_number_quality_score": null,
23
"pre_fill": null,
24
"url": "https://lookups.twilio.com/v2/PhoneNumbers/+14159929960"
25
}

The video below demonstrates how to check a phone number's line type with Lookup using Node.js and the Twilio Node Helper Library(link takes you to an external page).