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_code | String | Yes | The code displayed on the vehicle's license plate (e.g., "F") |
plate_number | String | Yes | The numeric part of the vehicle's license plate (e.g., "03320") |
{
"plate_code": "F",
"plate_number": "03320"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.plate_code | String | The plate code provided in the request |
data.plate_number | String | The plate number provided in the request |
data.expiry_date | String | The vehicle's registration expiry date in YYYY-MM-DD format |
status_code | Integer | HTTP status code indicating the result of the request |
success | Boolean | Indicates whether the API call was successful |
message | String | Human-readable description of the result |
message_code | String | Machine-readable code representing the result |
{
"data": {
"client_id": "dubai_vehicle_verify_IuaPusOFyknwlpxqnciz",
"plate_code": "F",
"plate_number": "03320",
"expiry_date": "2007-08-19"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid plate details provided",
"message_code": "invalid_plate_details"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/dubai-vehicle/verify' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"plate_code": "F",
"plate_number": "03320"
}'
{
"data": {
"client_id": "dubai_vehicle_verify_IuaPusOFyknwlpxqnciz",
"plate_code": "F",
"plate_number": "03320",
"expiry_date": "2007-08-19"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}