100
: Perfect match - exact match with carrier records75-99
: Strong match - high confidence in data accuracy50-74
: Partial match - some matching elements found1-49
: Weak match - low confidence in data accuracy0
: No match - data exists but does not match-1
: Unknown - carrier has no data for comparisoncurl --location --request POST 'https://callerapi.com/api/kyc/13146049999' \
--header 'Content-Type: application/json' \
--header 'x-auth;' \
--data-raw '{
"name": {
"first_name": "John",
"middle_name": "Smith",
"last_name": "Doe"
},
"dob": {
"day": "1",
"month": "12",
"year": "1999"
},
"address": {
"street": "Omnia",
"street_no": "23",
"unit_no": "11A",
"city": "Toronto",
"state": "Ontario",
"postcode": "M4B1B3",
"country": "CA"
},
"email": "john@callerapi.com"
}'
{
"kyc_results": {
"first_name_score": "0",
"last_name_score": "0",
"name_score": "0",
"address_score": "0",
"city_score": "0",
"country_score": "0",
"dob_score": "0",
"postcode_score": "0",
"email_score": "-1"
}
}