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 |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
plate_number | String | Yes | The vehicle's plate number (numeric portion) |
plate_city | String | Yes | The emirate where the vehicle is registered |
plate_code | String | Yes | The plate code (alphanumeric identifier) |
abu_dhabi
dubai
sharjah
ajman
umm_al_quwain
ras_al_khaimah
fujairah
{
"plate_number": "53320",
"plate_city": "dubai",
"plate_code": "15"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the vehicle details |
data.client_id | String | Unique identifier for the client/request |
data.plate_number | String | The vehicle's plate number |
data.maker | String | Vehicle manufacturer name |
data.model | String | Vehicle model name |
data.registration_date | String | Date when vehicle was registered (YYYY-MM-DD) |
data.registration_year | String | Year when vehicle was registered |
data.insurance_expiry_date | String | Date when insurance expires (YYYY-MM-DD) |
data.chassis_number | String | Vehicle chassis/VIN number |
data.fuel_type | String | Type of fuel used by the vehicle |
data.no_of_cylinders | String | Number of engine cylinders |
data.vehicle_type | String | Category of vehicle |
data.seating_capacity | String | Number of seats in the vehicle |
data.vehicle_horse_power | String | Engine power rating |
status_code | Integer | HTTP status code |
success | Boolean | Indicates if the request was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": {
"client_id": "uae_vehicle_sqwVlpjSBaUlntTLrlSU",
"plate_number": "12345",
"maker": "TOYOTA",
"model": "SEQUOIA",
"registration_date": "2014-04-06",
"registration_year": "2014",
"insurance_expiry_date": "2024-12-05",
"chassis_number": "ABCDEFES0123456",
"fuel_type": "PETROL",
"no_of_cylinders": "8",
"vehicle_type": "CAR",
"seating_capacity": "8",
"vehicle_horse_power": "381 HP"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 401,
"success": false,
"message": "Unauthorized access",
"message_code": "unauthorized"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/uae/vehicle-details' \
--header 'Content-Type: application/json' \
--data-raw '{
"plate_number": "53320",
"plate_city": "dubai",
"plate_code": "15"
}'
{
"data": {
"client_id": "uae_vehicle_sqwVlpjSBaUlntTLrlSU",
"plate_number": "12345",
"maker": "TOYOTA",
"model": "SEQUOIA",
"registration_date": "2014-04-06",
"registration_year": "2014",
"insurance_expiry_date": "2024-12-05",
"chassis_number": "ABCDEFES0123456",
"fuel_type": "PETROL",
"no_of_cylinders": "8",
"vehicle_type": "CAR",
"seating_capacity": "8",
"vehicle_horse_power": "381 HP"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}