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

middle_namestring name nullable

The middle name of a person

addressstring nullable

An address (a street name, a building number, and a unit number) of a person or a company

citystring nullable

A city or a town of a person or a company

statestring nullable

A state of a person or a company

postal_codestring nullable

A postal code (zip code, postcode) of a person or a company

phonestring nullable

The phone number of a person or a company

emailstring email nullable

The email address of a person or a company

ssnstring nullable

The US Social Security Number of a person (SSN). The value must be an unformatted string of digits, either 4 digits (partial) or exactly 9 digits (full). No dashes, spaces, or other characters are allowed

drivers_licensestring nullable

The unique driver identification number issued by a US state or territory. It is a mix of numbers and letters, and its format is state-dependent

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"
  }
}