Skip to contentSkip to navigationSkip to topbar
On this page

Identity Match


Use Identity Match to verify the ownership of a mobile phone number.

Identity Match compares user-supplied data, such as name, address, and date of birth, against authoritative sources. It returns match levels and an overall summary score, to help determine how closely the user's identity aligns with the information stored by these sources.


Coverage

coverage page anchor

Identity Match is available for phone numbers in the following countries.

(information)

Info

Identity Match is available for phone numbers in the United States and Brazil without additional carrier registration and approval.

Countries marked with a * symbol require additional carrier registration and approval(link takes you to an external page) before using Identity Match. Once carrier registration and approval are complete, all successful queries will be billed to your account. For additional pricing and discount information, contact Sales(link takes you to an external page).

Europe

europe page anchor
  • France* $0.55/query
  • Germany* $0.40/query
  • Italy* $1.20/query
  • Netherlands* $0.60/query
  • Spain* $0.40/query
  • United Kingdom* $0.50/query
  • Brazil $0.20/query
  • Canada* $0.28/query
  • United States $0.10/query
  • Puerto Rico $0.10/query

Make a GET /v2/PhoneNumbers/{PhoneNumber} request with the following as query parameters:

  • Fields=identity_match
  • User-provided information. For example, FirstName=John.
1
curl -X GET "https://lookups.twilio.com/v2/PhoneNumbers/{PhoneNumber}?Fields=identity_match&FirstName=John" \ -u
2
$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN

For detailed implementation examples, see Code examples and responses.


Provide the user-provided information as query parameters. Identity Match will provide match levels for how the given parameters compare against authoritative phone-based data sources.

Most of these parameters are optional for phone numbers in most countries. However, some countries have specific requirements.

Query parameterDescriptionMax character length
FirstNameThe user's first name.128
LastNameThe user's last name.128
AddressLine1The user's first address line. Example: 1600 Pennsylvania Ave NW.256
AddressLine2The user's second address line. Example: Suite 2.256
CityThe user's city.128
StateThe user's country subdivision, such as state, province, or locality.128
PostalCodeThe user's postal or ZIP code.10
AddressCountryCodeThe user's country code.2
NationalIdThe user's national ID, such as SSN.128
DateOfBirthThe user's date of birth in YYYYMMDD format. Example: 19901213.8

Country-specific requirements

country-specific-requirements page anchor

Some countries require specific parameters and have different data formatting rules. If a required parameter is missing, Error 60617 will be returned.

ParameterUsageDescription
AddressLine1OptionalUse only the address formats in the following examples for flats, units, or apartments:
  • For Flat 2 at 14 Smith Street, use Flat 2 14 Smith St, 2/14 Smith St, or F 2 14 Smith St.
  • For Unit 2 at 14 Smith Street, use Unit 2 14 Smith St, 2/14 Smith St, or U 2 14 Smith St
  • For Apartment 2 at 14 Smith Street, use 2/14 Smith or APT 2 14 Smith St.
AddressLine2Don't includeInclude this information in AddressLine1.
StateOptionalUse state abbreviations instead of the full state name. For example, QLD
ParameterUsageDescription
FirstNameRequiredUse only the first word of the user's name if it contains multiple words. For example, use Luis for the name "Luis Carlos Teixeira Brito Junior."
LastNameRequiredUse all words after the first word of the user's name if it contains multiple words. For example, use Carlos Teixeira Brito Junior for the name "Luis Carlos Teixeira Brito Junior."
AddressLine1RequiredThe user's address in the format [streetName streetNumber BL blNumber APT aptNumber neighborhoodName]. For example, RUA COSTA ESMERALDA 50 BL 14 APT 22 CENTR.
AddressLine2Don't includeInclude this information in AddressLine1.
CityDon't includeThis parameter can't be evaluated in Brazil.
AddressCountryCodeDon't includeThis parameter can't be evaluated in Brazil.
PostalCodeDon't includeThis parameter can't be evaluated in Brazil.
NationalIdOptionalThe user's national ID, such as CPF.
ParameterUsageDescription
FirstNameRequiredThe user's first name.
LastNameRequiredThe user's last name.
AddressLine1RequiredThe street name and house number. For example, Immermannstraße 26 and Oderbergerstrasse 12.
CityRequiredThe user's city.
PostalCodeRequiredThe user's postal code.
DateOfBirthOptionalThe user's date of birth in YYYYMMDD format.
ParameterUsageDescription
FirstNameRequiredThe user's first name.
LastNameRequiredThe user's last name.
AddressLine1RequiredThe street name and house number or house name. If both the house number and house name are available, include them.
PostalCodeRequiredThe user's postal code.
ParameterUsageDescription
FirstNameRequiredThe user's first name.
LastNameRequiredThe user's last name.
AddressLine1RequiredThe street type, street name, and building name or number. For example, via Garibaldi 27 or 27 via Garibaldi, Via Giacomo Quarenghi 34 or 34 Via Giacomo Quarenghi.
PostalCodeOptionalThe five-digit postal code. For example, 00015.
ParameterUsageDescription
FirstNameOptionalThe first initial of the user's name. For example, use L for the name "Luca."
AddressLine1OptionalThe street name and house number. For example, Jaarbeursplein 6A or Joris van Andringastraat 172.
PostalCodeOptionalThe postal code consisting of four digits and two characters, with no spaces. For example, 3054SP or 3521AL.
DateOfBirthOptionalThe user's date of birth in the YYYYMMDD format. For example, 19901214.

The response includes the identity_match object, which contains match levels for the user's submitted data. The identity_match object also contains a summary score that provides an overall match level for the user's identity.

Match levelDescriptionExample
exact_matchThe user's data matches the mobile number's data exactly."Robert" matches "Robert".
high_partial_matchThe user's data almost exactly matches the mobile number's data."Robere" is a high partial match for "Robert".
partial_matchThe user's data moderately matches the mobile number's data."Bob", "Rob", or "R" are partial matches for "Robert".
no_matchThe user's data doesn't match the mobile number's data at all."John" doesn't match "Robert".
no_data_availableNo data is available for comparison.

identity_match attributes and match levels

identity_match-attributes-and-match-levels page anchor
AttributeDescriptionAllowed values
first_name_matchThe match level for the FirstName attribute assigned to the submitted mobile number.exact_match, high_partial_match, partial_match, no_match, no_data_available
last_name_matchThe match level for the LastName attribute assigned to the submitted mobile number.exact_match, high_partial_match, partial_match, no_match, no_data_available
address_line_matchThe match level for the AddressLine1 and AddressLine2 attributes assigned to the submitted mobile number.exact_match, high_partial_match, partial_match, no_match, no_data_available
city_matchThe match level for the City attribute assigned to the submitted mobile number.exact_match, no_match, no_data_available
state_matchThe match level for the State attribute assigned to the submitted mobile number.exact_match, no_match, no_data_available
postal_code_matchThe match level for the PostalCode attribute assigned to the submitted mobile number.exact_match, no_match, no_data_available
address_country_matchThe match level for the AddressCountryCode attribute assigned to the submitted mobile number.exact_match, no_match, no_data_available
date_of_birth_matchThe match level for the DateOfBirth attribute assigned to the submitted mobile number.exact_match, high_partial_match (Canada only), partial_match (Canada only), no_match, no_data_available
national_id_matchThe match level for the NationalId attribute assigned to the submitted mobile number.exact_match, no_match, no_data_available
summary_scoreA single summary score that indicates overall match level.0, 20, 40, 70, 80, 100

Summary score calculation

summary-score-calculation page anchor

The summary_score represents the overall match level, with values ranging from 0 (no match) to 100 (exact match). Possible values include 0, 20, 40, 70, 80, and 100. This score isn't a percentage but is calculated based on the match values of the first_name_match, last_name_match, and address_line_match properties.

The following table shows how the summary_score is calculated based on different match scenarios:

first_name_matchlast_name_matchaddress_line_matchsummary_score
Any positive match: exact_match, high_partial_match, partial_matchAny positive match: exact_match, high_partial_match, partial_matchAny positive match: exact_match, high_partial_match, partial_match100
Any positive match: exact_match, high_partial_match, partial_matchAny negative match: no_match, no_data_availableAny positive match: exact_match, high_partial_match, partial_match80
Any positive match: exact_match, high_partial_match, partial_matchAny negative match: no_match, no_data_availableAny negative match: no_data_available70
Any positive match: exact_match, high_partial_match, partial_matchAny positive match: exact_match, high_partial_match, partial_matchAny negative match: no_match, no_data_available40
Any negative match: no_match, no_data_availableAny positive match: exact_match, high_partial_match, partial_matchAny positive match: exact_match, high_partial_match, partial_match20
Any positive match: exact_match, high_partial_match, partial_matchAny negative match: no_match, no_data_availableAny negative match: no_match, no_data_available0
Any negative match: no_match, no_data_availableAny positive match: exact_match, high_partial_match, partial_matchAny negative match: no_match, no_data_available20
Any negative match: no_match, no_data_availableAny negative match: no_match, no_data_availableAny positive match: exact_match, high_partial_match, partial_match0
Any negative match: no_match, no_data_availableAny negative match: no_match, no_data_availableAny negative match: no_match, no_data_available0

Code examples and responses

code-examples-and-responses page anchor
Identity Match LookupLink to code sample: Identity Match 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({
14
addressCountryCode: "US",
15
addressLine1: "321 Main Street",
16
addressLine2: "Suite 2",
17
city: "New York",
18
dateOfBirth: "19901214",
19
fields: "identity_match",
20
firstName: "John",
21
lastName: "Doe",
22
nationalId: "YZ3456883",
23
postalCode: "10021",
24
state: "NY",
25
});
26
27
console.log(phoneNumber.callingCountryCode);
28
}
29
30
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": [],
8
"caller_name": null,
9
"sim_swap": null,
10
"call_forwarding": null,
11
"line_status": null,
12
"line_type_intelligence": null,
13
"identity_match": {
14
"first_name_match": "exact_match",
15
"last_name_match": "high_partial_match",
16
"address_lines_match": "no_match",
17
"city_match": "no_match",
18
"state_match": "high_partial_match",
19
"postal_code_match": "no_data_available",
20
"address_country_match": "exact_match",
21
"national_id_match": "exact_match",
22
"date_of_birth_match": "exact_match",
23
"summary_score": 90,
24
"error_code": null,
25
"error_message": null
26
},
27
"reassigned_number": null,
28
"sms_pumping_risk": null,
29
"phone_number_quality_score": null,
30
"pre_fill": null,
31
"url": "https://lookups.twilio.com/v2/PhoneNumbers/+14159929960"
32
}

Frequently asked questions

frequently-asked-questions page anchor

What's considered a "good match rate?"

whats-considered-a-good-match-rate page anchor

What's considered a "good match rate" for Identity Match depends on the attributes you prioritize for your use case and the quality of the data provided.

For example, imagine an end user is signing up for an online bank account. They're very likely to provide all the correct information. This will result in higher match rates across all data elements when that customer data is compared with data held at our authoritative sources.

Now imagine an end user is signing up for a social media account. They may not provide accurate data. This will result in lower match rates.

The quality of the data you submit directly impacts the match results returned by Identity Match.

How does Twilio measure the accuracy of the authoritative source?

how-does-twilio-measure-the-accuracy-of-the-authoritative-source page anchor

When Twilio onboards an authoritative data source, we validate their data using a truth file.

A truth file begins with Personally Identifiable Information (PII) match data that results in an exact match. Twilio then generates a series of permutations of this data to gradually reduce the match quality to "no match." If the resulting match value at each stage aligns with expectations, then we can confirm the accuracy of the source data.

Can Identity Match requests contain multiple addresses?

can-identity-match-requests-contain-multiple-addresses page anchor

No, the Identity Match API only supports a single input data set per request. This includes the name, address, date of birth, and national ID associated with the end user's mobile phone number. The API returns a single set of match results in response.