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 for authentication (JWT format) |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
plate_code | String | Yes | The vehicle plate code (e.g., "M") |
plate_number | String | Yes | The vehicle plate number (e.g., "00234") |
{
"plate_code": "M",
"plate_number": "00234"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the vehicle information |
data.client_id | String | Unique identifier for the client/request |
data.chassis_number | String | Vehicle chassis number |
data.plate_number | String | Vehicle plate number |
data.plate_code | String | Vehicle plate code |
data.traffic_file_number | String | Traffic file number associated with the vehicle |
data.fit_upto | String | Vehicle fitness certification expiry date (YYYY-MM-DD) |
data.mortgage_status | String | Current mortgage status ("Yes" or "No") |
data.mortgage_company | String | Name of the mortgage company (if applicable) |
data.color | String | Vehicle color |
data.model | String | Vehicle model name |
data.model_year | String | Year of vehicle manufacture |
data.vehicle_class_description | String | Description of the vehicle class |
data.insurance_company | String | Name of the insurance provider |
data.insurance_number | String | Insurance policy number |
data.insurance_valid_upto | String | Insurance policy expiry date (YYYY-MM-DD) |
data.insurance_issue_date | String | Insurance policy issue date (YYYY-MM-DD) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Response message |
message_code | String | Code indicating the response status |
{
"data": {
"client_id": "dubai_vehicle_detailed_RJwrntUQyXylzNuThnlH",
"chassis_number": "JTGJX02PXC50123456",
"plate_number": "91000",
"plate_code": "M",
"traffic_file_number": "501700000",
"fit_upto": "2024-01-10",
"mortgage_status": "No",
"mortgage_company": "",
"color": "White Trade name",
"model": "TOYOTA HIACE",
"model_year": "2012",
"vehicle_class_description": "Light Bus",
"insurance_company": "WATANIA TAKAFUL GENERAL P.J.S.C.",
"insurance_number": "AU0523123123",
"insurance_valid_upto": "2024-02-10",
"insurance_issue_date": "2023-01-11"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 401,
"success": false,
"message": "Invalid credentials",
"message_code": "unauthorized"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/dubai-vehicle/detailed' \
--header 'Content-Type: application/json' \
--data-raw '{
"plate_code": "M",
"plate_number": "00234"
}'
{
"data": {
"client_id": "dubai_vehicle_detailed_RJwrntUQyXylzNuThnlH",
"chassis_number": "JTGJX02PXC50123456",
"plate_number": "91000",
"plate_code": "M",
"traffic_file_number": "501700000",
"fit_upto": "2024-01-10",
"mortgage_status": "No",
"mortgage_company": "",
"color": "White Trade name",
"model": "TOYOTA HIACE",
"model_year": "2012",
"vehicle_class_description": "Light Bus",
"insurance_company": "WATANIA TAKAFUL GENERAL P.J.S.C.",
"insurance_number": "AU0523123123",
"insurance_valid_upto": "2024-02-10",
"insurance_issue_date": "2023-01-11"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}