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 | JWT Bearer token (e.g. Bearer YOUR_TOKEN ) |
Content-Type | Yes | Must be application/json |
Parameter | Type | Required | Description |
---|---|---|---|
mobile_number | string | Yes | The user's mobile number |
email_id | string | Yes | The user's email address |
name | string | Yes | The user's full name |
{
"mobile_number": "8079038383",
"email_id": "bishalrathore@gmail.com",
"name": "BISHAL SINGH"
}
Parameter | Type | Description |
---|---|---|
client_id | string | Unique ID for this API call |
name | string | Name of the user |
email_id | string | Email used for verification |
mobile_number | string | Mobile number used |
mule_score | object | Fraud risk details including score and risk category |
digital_identity_score | object | Digital presence score and historical footprints |
upi_details | object | UPI ID and verification status |
employment_details | object | UAN and employment verification |
email_details | object | Email validity and metadata |
status_code | number | HTTP status code |
success | boolean | Whether the request was successful |
message | string | API message |
message_code | string | Internal message code |
{
"data": {
"client_id": "mule_score_rsraYjppfYACqbGbejtJ",
"name": "BISHAL SINGH",
"email_id": "bishalrathore@gmail.com",
"mobile_number": "8079038383",
"mule_score": {
"score": 824,
"risk_category": "very_low_risk",
"name_match_score": 62.0
},
"digital_identity_score": {
"impact": "positive",
"digital_identity_score": "518",
"digital_footprint": "Medium",
"travel_footprint": null,
"fintech_approved": "3",
"upi_vpa_count": "0",
"age_band": "21 - 25 Years",
"gender": "Male",
"name_match_score": "62",
"phone_first_seen_year": "2019",
"email_first_seen_year": "2021",
"phone_email_first_seen_year": "2021",
"phone_email_last_seen_year": "2024",
"phone_name_first_seen_year": "2020",
"phone_name_last_seen_year": "2024",
"email_name_first_seen_year": "2021",
"email_name_last_seen_year": "2024"
},
"upi_details": {
"impact": "positive",
"full_name": "MR BISHAL SINGH RATHORE",
"upi_id": "8079039393@pthdfc",
"mobile_number": "8079038383"
},
"employment_details": {
"impact": "positive",
"uan": "101669824010",
"employment_details": {
"status": "V",
"email_id": "bishalrathore@gmail.com",
"dob": "2001-07-25",
"gender": "M"
}
},
"email_details": {
"impact": "positive",
"email": "bishalrathore@gmail.com",
"status": "safe",
"valid": true,
"accepts_mail": true,
"domain_age": 0,
"username": "bishalrathore",
"disabled": false
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"error": null,
"message": "Your token is invalid. Please ensure that correct token is being used.",
"status_code": 401,
"success": false,
"message_code": "invalid_token"
}
/api/v1/verify/email
: Validates and checks metadata for an email./api/v1/verify/mobile
: Checks phone number reputation and usage history./api/v1/verify/upi
: Validates UPI ID and user name mapping.curl --location --request POST 'https://kyc-api.surepass.app/api/v1/mule-score/score' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "8079038383",
"email_id": "bishalrathore@gmail.com",
"name": "BISHAL SINGH"
}'
{
"data": {
"client_id": "mule_score_rsraYjppfYACqbGbejtJ",
"name": "BISHAL SINGH",
"email_id": "bishalrathore@gmail.com",
"mobile_number": "8079038383",
"mule_score": {
"score": 824,
"risk_category": "very_low_risk",
"name_match_score": 62.0
},
"digital_identity_score": {
"impact": "positive",
"digital_identity_score": "518",
"digital_footprint": "Medium",
"travel_footprint": null,
"fintech_approved": "3",
"upi_vpa_count": "0",
"age_band": "21 - 25 Years",
"gender": "Male",
"name_match_score": "62",
"phone_first_seen_year": "2019",
"email_first_seen_year": "2021",
"phone_email_first_seen_year": "2021",
"phone_email_last_seen_year": "2024",
"phone_name_first_seen_year": "2020",
"phone_name_last_seen_year": "2024",
"email_name_first_seen_year": "2021",
"email_name_last_seen_year": "2024"
},
"upi_details": {
"impact": "positive",
"full_name": "MR BISHAL SINGH RATHORE",
"upi_id": "8079039393@pthdfc",
"mobile_number": "8079038383"
},
"employment_details": {
"impact": "positive",
"uan": "101669824010",
"employment_details": {
"status": "V",
"email_id": "bishalrathore@gmail.com",
"dob": "2001-07-25",
"gender": "M"
}
},
"email_details": {
"impact": "positive",
"email": "bishalrathore@gmail.com",
"status": "safe",
"valid": true,
"accepts_mail": true,
"domain_age": 0,
"username": "bishalrathore",
"disabled": false
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}