Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for API authentication. Format: Bearer YOUR_JWT_TOKEN |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| rc_number | string | Yes | The vehicle Registration Certificate number to be verified. Format should follow Indian RC number pattern (e.g., GJ01RV8999). Accepts alphanumeric characters. |
{
"rc_number": "GJ01RV8999"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object holding the verification results |
| data.client_id | string | Unique identifier for this verification request |
| data.rc_number | string | The RC number that was verified |
| data.results | array | Array of stolen vehicle records matching the RC number |
| data.results[].rc_number | string | Registration Certificate number of the stolen vehicle |
| data.results[].fir_number | string | First Information Report number filed for the theft |
| data.results[].state | string | State where the FIR was filed |
| data.results[].district | string | District/police jurisdiction where the FIR was filed |
| data.results[].fir_date | string | Date when the FIR was filed (format: YYYY-MM-DD) |
| data.results[].police_station | string | Police station where the theft was reported |
| data.results[].vehicle_type | string | Type/category of the vehicle (e.g., MOTOR CYCLE, CAR) |
| data.results[].vehicle_make | string | Manufacturer/brand of the vehicle |
| data.results[].engine_number | string | Engine number of the stolen vehicle |
| data.results[].vehicle_model | string | Model name of the vehicle |
| data.results[].chassis_number | string | Chassis number of the stolen vehicle |
| data.results[].vehicle_color | string | Color of the stolen vehicle |
| data.results[].phone_number | string | Contact number of the complainant |
| data.results[].complainant_name | string | Name of the person who filed the complaint |
| data.results[].address | string | Address of the complainant |
| data.results[].stolen_from | string | Location/place from where the vehicle was stolen |
| data.results[].status | string | Current status of the vehicle (e.g., Stolen) |
| data.results[].report_date | string | Date when the report was recorded (format: YYYY-MM-DD) |
| status_code | integer | HTTP status code of the response |
| success | boolean | Indicates whether the API request was successful |
| message | string | Human-readable message describing the result |
| message_code | string | Machine-readable code for the message |
{
"data": {
"client_id": "rc_stolen_iubVHkfaXJlyagRYOOWk",
"rc_number": "GJ01RV8999",
"results": [
{
"rc_number": "GJ01RV8999",
"fir_number": "036795",
"state": "DELHI",
"district": "Crime Branch, Delhi",
"fir_date": "2017-11-01",
"police_station": "e-Police Station MV Theft",
"vehicle_type": "MOTOR CYCLE",
"vehicle_make": "TVS",
"engine_number": "AB1CD1112333",
"vehicle_model": "APACHE",
"chassis_number": "AB123CD45H2G12345",
"vehicle_color": "GREY",
"phone_number": "9876543210",
"complainant_name": "RAJIV TALWAR",
"address": "DELHI DELHI 110032",
"stolen_from": "NEAR FLYOVER GTB HOSPITAL CROSSING DELHI",
"status": "Stolen",
"report_date": "1800-01-01"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid RC number format",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/rc/rc-stolen' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"rc_number": "GJ01RV8999"
}'{
"data": {
"client_id": "rc_stolen_iubVHkfaXJlyagRYOOWk",
"rc_number": "GJ01RV8999",
"results": [
{
"rc_number": "GJ01RV8999",
"fir_number": "036795",
"state": "DELHI",
"district": "Crime Branch, Delhi",
"fir_date": "2017-11-01",
"police_station": "e-Police Station MV Theft",
"vehicle_type": "MOTOR CYCLE",
"vehicle_make": "TVS",
"engine_number": "AB1CD1112333",
"vehicle_model": "APACHE",
"chassis_number": "AB123CD45H2G12345",
"vehicle_color": "GREY",
"phone_number": "9876543210",
"complainant_name": "RAJIV TALWAR",
"address": "DELHI DELHI 110032",
"stolen_from": "NEAR FLYOVER GTB HOSPITAL CROSSING DELHI",
"status": "Stolen",
"report_date": "1800-01-01"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}