UK eKYC

Verify a British Identity across multiple sources

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.

Parameters

{{baseUrl}}/api/v1/uk/kyc

Header

HeaderTypeDescription
AppIdstringyou would need to create an app to get your app ID
Authorizationstringpublic secret key e.g prod_sk_1T1eSavlZxy02OT3OWlvbxK4G

Body

Parameter Type Description
first_name * string required
last_name * string required
middle_name string
date_of_birth * string required
gender * string M,F required
country * string GBR required
street_name * string required
house_number * string
post_code * string Required

Response Sample

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