Social Security Number

We are able to verify a US person's identity based on their name and address first line, SSN (last 4 or full 9). To improve the result, you can also include date of birth of the user in your request.

Request:

{
    "template_id": "US_SSN",
    "user_data": {
        "first_name": "REQUIRED",
        "last_name": "REQUIRED",
        "date_of_birth": "OPTIONAL",
        "address": {
            "address_street_1": "REQUIRED",
            "address_street_2": "OPTIONAL",
            "address_city": "CONDITIONAL: required if zip code not present",
            "address_state": "CONDITIONAL: required if zip code not present",
            "address_zip_code": "CONDITIONAL: not required if city and state are present"
        },
        "identity": {
            "identity_number_type": "'SSN9' or 'SSN4'",
            "identity_number": "{{4_Digit_SSN or 9_Digit_SSN}}",
            "identity_country_code": "US"
        }
    }
}