Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication (JWT format) |
| Content-Type | Yes | Application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | String | Yes | Enter Hallmark Unique Identification (HUID) Number |
{
"id_number": "2979"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Container for the HUID verification data |
| data.client_id | String | Unique Client ID |
| data.id_number | String | Identification number |
| data.huid_number | String | Unique identifier for the item |
| data.address | String | Address of the item |
| data.product | String | Name of the product |
| data.hallmarking_center_name | String | Name of the hallmarking center |
| data.hallmarking_center_registration_number | String | Registration number of the hallmarking center |
| data.purity | String | Purity level of the item |
| data.job_no | String | Job number |
| data.outlet_name | String | Name of the outlet |
| data.weight | String | Weight of the item |
| data.registration_number | String | Registration number |
| data.material | String | Material of the item |
| data.hallmark_date | String | Date when the item was hallmarked in "YYYY-MM-DD" format |
| data.status | String | Current status of the item |
| status_code | Integer | HTTP status code |
| success | Boolean | Indicates if the request was successful |
| message | String | Response message |
| message_code | String | Code indicating the type of message |
{
"data": {
"client_id": "huid_BedayPWyAvlxyChVilut",
"id_number": "297VR9",
"huid_number": "297VR9",
"address": "FIST FLOOR,, R.S. NO-185 P, T.P.S. NO-8, PLOT NO- -26/BRAHMANIYA PARA, TRASIYO ROAD,, KRISHNA VASAN",
"product": "LEDIS RING",
"hallmarking_center_name": "MEDDOX ASSAYING & HALLMARKING CENTRE",
"hallmarking_center_registration_number": "WRO/RAHC/R-3623462",
"purity": "22K916",
"job_no": "106830909",
"outlet_name": "DASHRATH GOLD ART PRIVATE LIMITED",
"weight": "3.345",
"registration_number": "7690218927",
"material": "Gold",
"hallmark_date": "2023-03-07",
"status": "Available at Jeweller"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 400,
"success": false,
"message": "Invalid HUID number provided",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/huid/verify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "2979"
}'{
"data": {
"client_id": "huid_BedayPWyAvlxyChVilut",
"id_number": "297VR9",
"huid_number": "297VR9",
"address": "FIST FLOOR,, R.S. NO-185 P, T.P.S. NO-8, PLOT NO- -26/BRAHMANIYA PARA, TRASIYO ROAD,, KRISHNA VASAN",
"product": "LEDIS RING",
"hallmarking_center_name": "MEDDOX ASSAYING & HALLMARKING CENTRE",
"hallmarking_center_registration_number": "WRO/RAHC/R-3623462",
"purity": "22K916",
"job_no": "106830909",
"outlet_name": "DASHRATH GOLD ART PRIVATE LIMITED",
"weight": "3.345",
"registration_number": "7690218927",
"material": "Gold",
"hallmark_date": "2023-03-07",
"status": "Available at Jeweller"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}