Get the average value of a vehicle
GET/v1/vehicles/estimate
Get the average value of a vehicle
Request
Query Parameters
model integerrequired
ID of the Model of the vehicle
year integerrequired
Year of manufacture of the vehicle
Responses
- 200
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
brand string
Brand of the vehicle
model string
Model of the vehicle
year string
Year of manufacture of the vehicle
nigerian_used object
Price info of the vehicle in Nigerian used condition
min float
Minimum value of the vehicle in Nigerian used condition
max float
Maximum value of the vehicle in Nigerian used condition
average float
Average value of the vehicle in Nigerian used condition
foreign_used object
Price info of the vehicle in foreign used condition
min float
Minimum value of the vehicle in foreign used condition
max float
Maximum value of the vehicle in foreign used condition
average float
Average value of the vehicle in foreign used condition
{
"data": {
"brand": "Toyota",
"model": "Camry",
"year": "2005",
"nigerian_used": {
"min": 1000000.45,
"max": 1000000.45,
"average": 1000000.45
},
"foreign_used": {
"min": 1000000.45,
"max": 1000000.45,
"average": 1000000.45
}
}
}
Not found.
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "404 Not Found (Client Error)"
}
Loading...