v1
latestOpenAPI 3.1.02026-08-06134755.4 KB🇺🇸 USA
eIDV
The USA eIDV (electronic Identity Verification) service provides automated, remote identity verification for individuals within the United States. It utilizes a person's first name, last name, and date of birth to check against official records. The service returns a match score along with a detailed description of the verification outcome, enabling quick and reliable identity checks.
post/services/us/eidv
Request body
Example request
{
"middle_name": "David",
"address": "45 High Street, Flat 2A",
"city": "London",
"postal_code": "SW1A 1AA",
"phone": "441172345678",
"email": "josh.coffey@example.com",
"ssn": "545180772",
"drivers_license": "P620-7949"
}Response
OK
The request was successful, and our system returned an expected response.
Example response
{
"data": {
"match_score": 80,
"name_match": "NO_MATCH",
"dob_match": "NO_MATCH",
"address_match": "NO_MATCH",
"city_match": "NO_MATCH",
"state_match": "NO_MATCH",
"postal_code_match": "NO_MATCH",
"phone_match": "NO_MATCH",
"email_match": "NO_MATCH",
"ssn_match": "NO_MATCH",
"drivers_license_match": "NO_MATCH"
}
}