v1

latestOpenAPI 3.0.02026-07-147195292.0 KB
Cars Market API

Predict car price based on it's specifications

Predict car price based on it's specifications

get/predict/car/price

Query parameters

api_keystring

The API Authentication Key. Mandatory with all API calls.

vinstring

Predict price for a VIN

car_type'used' | 'new' required

Car condition

yearinteger

Car manufacturing year

makestring

Car's make

modelstring

Car's model

trimstring

Car's trim

is_certifiedboolean

Boolean to indicate car is certified or not

carfax_1_ownerboolean

Boolean to indicate car is carfax one owner or not

carfax_clean_titleboolean

Boolean to indicate car has clean title or not

base_exterior_colorstring

Base exterior color of the car

base_interior_colorstring

Base interior color of the car

transmission'Manual' | 'Automatic'

Transmission on the car

drivetrain'4WD' | 'AWD' | 'FWD' | 'RWD'

Drivetrain on the car

engine_sizenumber

Engine Size of the car

engine_block'I' | 'V' | 'H'

Engine Block of the car

cylindersinteger

Number of cylinders in the vehicle

doorsinteger

Number of doors in the vehicle

highway_mpginteger

Highway mileage

city_mpginteger

City 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

country'us' | 'ca'

Country for which car price will be predicted

Response

Predicted price of the car along with it's specifications

predicted_priceinteger

Actual predicted price of a car

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
  }
}