Dojah’s Identity US API helps to verify the address and SSN of an individual

Request

[GET]
{{baseUrl}}/api/v1/us/kyc
HeaderTypeDescription
AppIdstringyou would need to create an app to get your app ID
Authorizationstringpublic secret key e.g prod_sk_1T1eSavlZxy02OT3OWlvbxK4G

Body Parameter

ParameterTypeDescription
first_name *stringrequired
last_name *stringrequired
address_street_1 *stringrequired
address_street_2string
address_citystringConditional: required if zipcode is not present
address_statestringConditional: required if zipcode is not present
address_zip_codestringConditional: not required if city and state are present
identity_number_type *stringβ€œβ€˜SSN9’ or β€˜SSN4’”required
identity_number *stringrequired

Sample response

Response
{
  "entity": {
    "id-number": 4655255784,
    "results": {
      "key": "result.match",
      "message": "ID Located"
    },
    "summary-result": {
      "key": "id.success",
      "message": "PASS"
    }
  }
}