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 format |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
id_number | String | Yes | The mobile number to be verified (10-digit format) |
{
"id_number": "1234567890"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.mobile_number | String | The mobile number that was verified |
data.is_valid | Boolean | Indicates whether the mobile number is valid (true) or invalid (false) |
data.operator | String | The telecom service provider for the mobile number (e.g., Jio, Airtel, Vodafone) |
data.circle | String | The geographical telecom circle to which the number belongs |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates whether the API request was successful |
message | String | Human-readable description of the response status |
message_code | String | Machine-readable code representing the response status |
{
"data": {
"client_id": "telecom_verification_TEMsLgQPzcOnripjzkph",
"mobile_number": "910000000",
"is_valid": true,
"operator": "jio",
"circle": "Rajasthan"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": {
"client_id": "telecom_verification_invalid_number",
"mobile_number": "123456",
"is_valid": false,
"operator": null,
"circle": null
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/telecom/telecom-verification' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "1234567890"
}'
{
"data": {
"client_id": "telecom_verification_TEMsLgQPzcOnripjzkph",
"mobile_number": "910000000",
"is_valid": true,
"operator": "jio",
"circle": "Rajasthan"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}