Motor Vehicle Records
Look up Kenyan motor vehicle records by plate via POST /api/v1/mvr/ke. HTTP 200 and 404 are billable.
Request
POST/api/v1/mvr/ke
{{baseUrl}}/api/v1/mvr/keHeader
Body Parameters
Sample request body
All verification APIs require consent: true in the JSON body.
Sample dataSample request body
{
"plate_number": "KAA123A",
"consent": true
}Response
200 OKSample dataExample response
{
"success": true,
"response_code": 200,
"message": "Vehicle Details Fetched Successfully",
"country": "ke",
"data": {
"reg_no": "KCA123A",
"vehicle": {
"make": "Toyota",
"model": "Corolla",
"color": "White",
"body_type": "Saloon",
"vehicle_type": "Motor Car",
"purpose": "Private",
"registration_status": "Active",
"registration_date": "2020-01-15",
"chassis_number": "ABC123",
"engine_number": "ENG1",
"engine_capacity": "1500",
"fuel_type": "Petrol",
"passenger_capacity": "5",
"gross_weight": "1500",
"tare_weight": "1100",
"logbook_number": "LB1",
"logbook_serial": "S1",
"duty_status": null,
"duty_amount": null,
"entry": { "number": null, "CPC": null }
},
"owner": {
"first_name": "JAMES",
"middle_name": null,
"last_name": "KAMAU",
"full_name": "JAMES KAMAU",
"id_number": "1028845317",
"pin": null,
"phone": null,
"address": null,
"code": null,
"town": "Nairobi"
},
"is_valid": true
},
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}Response Fields
Error codes
Standard Peleza HTTP / response_code values (same across all API calls). Validation message text is endpoint-specific. Full reference: Error Codes.
Set {{baseUrl}} to https://api.peleza.com (production) or https://sandbox.peleza.com (sandbox). Authenticated calls need a Bearer token from POST /api/v1/oauth/token.
