This is an Identity verification service for the UK, It uses Electoral Roll, CreditLendersFull(CAIS, Insight), CCJ(Country Court Judgements), BT OSIS, Mortality..

The 2+2 Matching uses Name+Address and Name+DOB in various combination to reach a Pass or Fail.

Request

[POST]
{{baseUrl}}/api/v1/uk/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
middle_namestring
date_of_birth *stringrequired
gender *stringM,Frequired
country *stringGBRrequired
street_name *stringrequired
house_number *string
post_code *stringRequired

Sample response

Response
{
  "entity": {
    "interpretResult": "Pass",
    "message": "Matching performed using 11,8 sources as per profile",
    "rawResponse": [
      {
        "AddressMatch": "NoMatch",
        "DataSource": "Resident Roll",
        "DobMatch": "Partial",
        "FirstNameMatch": "Initial",
        "SurnameMatch": "Full"
      }
    ],
    "transactionResult": "Success"
  }
}