2015 Toyota Highlander
Toyota
USD98920.00
cvt · gas · 99611 mi · White
cars / #146
Toyota
USD98920.00
cvt · gas · 99611 mi · White
curl -sS \
"https://example-data.com/api/v1/cars/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/146"
);
const car = await res.json();import type { Car } from "https://example-data.com/types/cars.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cars/146"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/146"
)
car = res.json() {
"id": 146,
"make": "Toyota",
"model": "Highlander",
"year": 2015,
"trim": null,
"vin": "MKRK6K352JDNVTGEC",
"color": "White",
"mileage": 99611,
"price": 98920,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Collierstad",
"region": "West Virginia",
"countryAlpha2": "KE",
"sellerUserId": 118,
"isSold": false,
"createdAt": "2025-02-20T03:22:33.988Z",
"updatedAt": "2025-06-15T21:55:33.835Z"
}