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 | Must be set to application/json |
Parameter | Type | Required | Description |
---|---|---|---|
imei | String | Yes | The International Mobile Equipment Identity number of the device to be verified (15-17 digits) |
{
"imei": "867268074226205"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.imei | String | The IMEI number that was verified |
data.brand_name | String | Brand name of the device (e.g., Samsung, Apple, 1+) |
data.model_name | String | Model name and version of the device |
data.manufacturer | String | Full name of the device manufacturer |
data.device_type | String | Type of the device (e.g., Smartphone, Tablet) |
data.status | String | Verification status of the device (e.g., Valid, Invalid) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates whether the request was successful |
message | String | Human-readable description of the response |
message_code | String | Machine-readable code for the response |
{
"data": {
"client_id": "imei_verification_ueIckoGbgyMjzLvneoLW",
"imei": "867268074226205",
"brand_name": "1+",
"model_name": "CPH2487",
"manufacturer": "OnePlus Technology (Shenzhen) Co Ltd",
"device_type": "Smartphone",
"status": "Valid"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 422,
"success": false,
"message": "Verification Failed",
"message_code": "verification_failed"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/imei/imei-verification' \
--header 'Content-Type: application/json' \
--data-raw '{
"imei": "867268074226205"
}'
{
"data": {
"client_id": "imei_verification_ueIckoGbgyMjzLvneoLW",
"imei": "867268074226205",
"brand_name": "1+",
"model_name": "CPH2487",
"manufacturer": "OnePlus Technology (Shenzhen) Co Ltd",
"device_type": "Smartphone",
"status": "Valid"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}