Car Valuation API avatar
Car Valuation API

Under maintenance

Pricing

$25.00 / 1,000 results

Go to Store
Car Valuation API

Car Valuation API

Under maintenance

Developed by

Fatih Köse

Fatih Köse

Maintained by Community

Car Valuation API is a powerful tool designed to provide car valuations along with car specs. By simply inputting basic information about the car and specifying the country, users can obtain valuation data and parsed & organised car details. For now, it only works in United States.

0.0 (0)

Pricing

$25.00 / 1,000 results

4

Total users

21

Monthly users

5

Runs succeeded

>99%

Last modified

a year ago

Overview Car Valuation API is a powerful tool designed to provide car valuations along with more details of the car in parsed & organized structure. By simply inputting basic information about the car and specifying the country, users can obtain detailed valuation data and additional insights from trusted sources.

How It Works Input Information: Provide an array of strings containing car details (e.g., "2010 Toyota Corolla", "2020 Dodge Charger") and the country (For now, it only supports United States) for which the valuation is required. Processing: The actor processes the input data and fetches relevant information from multiple reliable sources. Output: Returns a structured JSON object containing detailed car valuation and specifications.

Example Input

1{
2    "car_info": [
3        "2019 Honda cr-v EX-L Sport Utility 4D",
4        "2006 Toyota corolla S Sedan 4D",
5        "2006 Cadillac sts Sedan 4D"
6    ],
7    "country": "United States"
8}

Example Output

1[
2    {
3        "input_text": "2010 Toyota Corolla",
4        "car_title": "2010 Toyota Corolla LE Sedan 4D",
5        "vehicle_type": "Sedan",
6        "year": "2010",
7        "make": "Toyota",
8        "model": "Corolla",
9        "variant": "LE",
10        "private_seller_valuation_range": "$5,000 - $7,000",
11        "trade_in_valuation_range": "$3,000 - $5,000",
12        "fuel_type": "Gasoline",
13        "engine": "1.8L I4",
14        "cylinders": "4",
15        "transmission": "Automatic",
16        "drivetrain": "FWD",
17        "door_count": 4,
18        "seat_count": 5,
19        "body": "Sedan",
20        "average_mileage": "120,000 - 150,000 miles",
21        "kbb_link": "https://www.kbb.com/toyota/corolla/2010/le-sedan-4d",
22        "google_link": "https://www.google.com/search?q=2010+Toyota+Corolla+LE",
23        "consumerreports_link": "https://www.consumerreports.org/cars/toyota/corolla/2010",
24        "jdpower_link": "https://www.jdpower.com/cars/2010/toyota/corolla"
25    },
26    {
27        "input_text": "2020 Dodge Charger",
28        "car_title": "2020 Dodge Charger SXT Sedan 4D",
29        "vehicle_type": "Sedan",
30        "year": "2020",
31        "make": "Dodge",
32        "model": "Charger",
33        "variant": "SXT",
34        "private_seller_valuation_range": "$20,000 - $25,000",
35        "trade_in_valuation_range": "$15,000 - $20,000",
36        "fuel_type": "Gasoline",
37        "engine": "3.6L V6",
38        "cylinders": "6",
39        "transmission": "Automatic",
40        "drivetrain": "RWD",
41        "door_count": 4,
42        "seat_count": 5,
43        "body": "Sedan",
44        "average_mileage": "20,000 - 30,000 miles",
45        "kbb_link": "https://www.kbb.com/dodge/charger/2020/sxt-sedan-4d",
46        "google_link": "https://www.google.com/search?q=2020+Dodge+Charger+SXT",
47        "consumerreports_link": "https://www.consumerreports.org/cars/dodge/charger/2020",
48        "jdpower_link": "https://www.jdpower.com/cars/2020/dodge/charger"
49    }
50]