Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token authentication using JWT |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
name | string | Yes | Full name of the person to screen |
dob | string | Yes | Date of birth in YYYY-MM-DD format |
nationality | string | Yes | Nationality of the person |
address | string | Yes | Current residential address |
{
"name": "narendra modi",
"dob": "1950-09-17",
"nationality": "indian",
"address": "gujrat"
}
Parameter | Type | Description |
---|---|---|
data.client_id | string | Unique identifier for the search request |
data.name | string | Name used for the search |
data.results[].score | number | Match confidence score (0-1) |
data.results[].name | array | Known name variations |
data.results[].first_name | array | First names of the matched person |
data.results[].last_name | array | Last names of the matched person |
data.results[].nationality | array | Associated nationalities |
data.results[].position | array | Current and past positions held |
data.results[].date_of_birth | array | Known date(s) of birth |
data.results[].country | array | Associated countries |
data.results[].gender | array | Gender(s) of the person |
data.results[].email | array | Known email addresses |
data.results[].notes | array/string | Additional relevant information |
data.results[].birth_place | array | Known place(s) of birth |
data.results[].education | array | Education details |
data.results[].tax_number | string | Tax identification number |
status_code | number | HTTP status code |
success | boolean | Indicates if request was successful |
message | string | Status message |
message_code | string | Message code |
{
"data": {
"client_id": "pep_match_QrNllNSjVxmGkFVtgkol",
"name": "narendra modi",
"results": [
{
"score": 0.98,
"name": [
"Narendra Modi",
"Modi, Shri Narendra"
],
"first_name": [
"Narendra"
],
"last_name": [
"Modi"
],
"nationality": [
"in"
],
"position": [
"Lok Sabha (member, 2014-)"
],
"date_of_birth": [
"1950-09-17"
],
"country": [
"in"
],
"gender": [
"male"
],
"email": [
"appt.pmo@gov.in"
],
"notes": null,
"birth_place": null,
"education": null,
"tax_number": null
},
{
"score": 0.98,
"name": [
"နရေန္ဒြ မောဒီ",
"ناريندرا مودي",
"Նարենդրա Մոդի",
"Narendra Modi",
"Нарэндра Модзі",
"নরেন্দ্র মোদী",
"ណារិនដ្រាម៉ូឌី",
"Narēndra Modi"
],
"first_name": [
"Damodar",
"Narendra"
],
"last_name": [
"Modi"
],
"nationality": [
"in"
],
"position": [
"Leader of the House in Lok Sabha (2019-)",
"Member of the Gujarat Legislative Assembly (2002-2014)",
"Minister of Personnel, Public Grievances, & Pensions",
"member of the Lok Sabha (2024-)",
"Chief Minister of Gujarat (2001-2014)",
"Member of the 17th Lok Sabha (2019-)",
"Minister of Personnel, Public Grievances and Pensions (2014-)",
"Prime Minister of India (2014-)",
"Head, Dept. of Space",
"Prime Minister",
"Head, Dept. of Atomic Energy",
"Lok Sabha (member, 2014-)",
"Member of the 16th Lok Sabha (2014-)"
],
"date_of_birth": [
"1950-09-17"
],
"country": [
"in"
],
"gender": [
"male"
],
"email": [
"appt.pmo@gov.in"
],
"notes": [
"14th Prime Minister of India"
],
"birth_place": [
"Vadnagar"
],
"education": [
"Gujarat University (-1983)",
"University of Delhi (-1978)"
],
"tax_number": null
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 401,
"success": false,
"message": "Invalid authentication token",
"message_code": "unauthorized"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/aml/aml-search' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "narendra modi",
"dob": "1950-09-17",
"nationality": "indian",
"address": "gujrat"
}'
{
"data": {
"client_id": "pep_match_QrNllNSjVxmGkFVtgkol",
"name": "narendra modi",
"results": [
{
"score": 0.98,
"name": [
"Narendra Modi",
"Modi, Shri Narendra"
],
"first_name": [
"Narendra"
],
"last_name": [
"Modi"
],
"nationality": [
"in"
],
"position": [
"Lok Sabha (member, 2014-)"
],
"date_of_birth": [
"1950-09-17"
],
"country": [
"in"
],
"gender": [
"male"
],
"email": [
"appt.pmo@gov.in"
],
"notes": null,
"birth_place": null,
"education": null,
"tax_number": null
},
{
"score": 0.98,
"name": [
"နရေန္ဒြ မောဒီ",
"ناريندرا مودي",
"Նարենդրա Մոդի",
"Narendra Modi",
"Нарэндра Модзі",
"নরেন্দ্র মোদী",
"ណារិនដ្រាម៉ូឌី",
"Narēndra Modi"
],
"first_name": [
"Damodar",
"Narendra"
],
"last_name": [
"Modi"
],
"nationality": [
"in"
],
"position": [
"Leader of the House in Lok Sabha (2019-)",
"Member of the Gujarat Legislative Assembly (2002-2014)",
"Minister of Personnel, Public Grievances, & Pensions",
"member of the Lok Sabha (2024-)",
"Chief Minister of Gujarat (2001-2014)",
"Member of the 17th Lok Sabha (2019-)",
"Minister of Personnel, Public Grievances and Pensions (2014-)",
"Prime Minister of India (2014-)",
"Head, Dept. of Space",
"Prime Minister",
"Head, Dept. of Atomic Energy",
"Lok Sabha (member, 2014-)",
"Member of the 16th Lok Sabha (2014-)"
],
"date_of_birth": [
"1950-09-17"
],
"country": [
"in"
],
"gender": [
"male"
],
"email": [
"appt.pmo@gov.in"
],
"notes": [
"14th Prime Minister of India"
],
"birth_place": [
"Vadnagar"
],
"education": [
"Gujarat University (-1983)",
"University of Delhi (-1978)"
],
"tax_number": null
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}