v1
latestOpenAPI 3.0.02026-07-147195292.0 KBCars Market API
Predict car price for UK based on it's specifications
Predict car price for UK based on it's specifications
get/predict/car/uk/price
Query parameters
api_keystring
The API Authentication Key. Mandatory with all API calls.
vrmstring
Predict price for a VRM
yearinteger
Car manufacturing year
makestring
Car's make
modelstring
Car's model
trimstring
Car's trim
base_exterior_colorstring
Base exterior color of the car
transmission'Manual' | 'Automatic'
Transmission on the car
drivetrainstring
Drivetrain on the car
engine_sizenumber double
Engine Size of the car
cylindersinteger
Number of cylinders in the vehicle
doorsinteger
Number of doors in the vehicle
fuel_typestring
Fuel type of the car
highway_mpgnumber double
Highway mileage
city_mpgnumber double
City mileage of the car
combined_mpgnumber double
Combiined mileage of the car
latitudenumber
Latitude component of the location
longitudenumber
Longitude component of the location
milesinteger
miles vehicle has driven in total
zipstring
Location zip
Response
Predicted price of the car along with it's specifications
Example response
{
"predicted_price": 37998,
"price_range": {
"lower_bound": 32913,
"upper_bound": 44358
},
"specs": {
"base_exterior_color": "Black",
"base_interior_color": "Brown",
"carfax_1_owner": false,
"carfax_clean_title": false,
"city_mpg": 18,
"cylinders": 6,
"doors": 4,
"drivetrain": "4WD",
"engine_block": "V",
"engine_size": 2.7,
"highway_mpg": 23,
"is_certified": false,
"latitude": 44.71164,
"longitude": -92.851607,
"make": "ford",
"miles": 28741,
"model": "f-150",
"transmission": "Automatic",
"trim": "xlt",
"year": 2018
}
}