2017 Chevrolet Traverse
Chevrolet
USD114500.00
automatic · hybrid · 45269 mi · Yellow
cars / #145
Chevrolet
USD114500.00
automatic · hybrid · 45269 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/145"
);
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/145"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/145"
)
car = res.json() {
"id": 145,
"make": "Chevrolet",
"model": "Traverse",
"year": 2017,
"trim": "Platinum",
"vin": "H1DHZXTV07Z7VVM4E",
"color": "Yellow",
"mileage": 45269,
"price": 114500,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "truck",
"listingType": "sale",
"city": "West Margret",
"region": "Alaska",
"countryAlpha2": "PL",
"sellerUserId": 181,
"isSold": false,
"createdAt": "2025-09-27T07:08:31.139Z",
"updatedAt": "2026-05-09T08:40:37.464Z"
}