2026 Chevrolet Traverse
Chevrolet
USD36480.00
manual · gas · 2134 mi · Yellow
cars / #135
Chevrolet
USD36480.00
manual · gas · 2134 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/135"
);
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/135"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/135"
)
car = res.json() {
"id": 135,
"make": "Chevrolet",
"model": "Traverse",
"year": 2026,
"trim": "Touring",
"vin": "XEAVU83KCYAH1WD17",
"color": "Yellow",
"mileage": 2134,
"price": 36480,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Pittsfield",
"region": "California",
"countryAlpha2": "PE",
"sellerUserId": 8,
"isSold": false,
"createdAt": "2026-04-08T15:47:00.701Z",
"updatedAt": "2026-05-12T19:54:21.016Z"
}