2018 Chevrolet Traverse
Chevrolet
USD140.00
cvt · gas · 51113 mi · Gray
Overview
cars / #93
Chevrolet
USD140.00
cvt · gas · 51113 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/93" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/93"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/93"
)
car = res.json() Response
{
"id": 93,
"make": "Chevrolet",
"model": "Traverse",
"year": 2018,
"trim": null,
"vin": "P240VXLBJTUCSJUSJ",
"color": "Gray",
"mileage": 51113,
"price": 140,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "wagon",
"listingType": "rent",
"city": "Waelchifield",
"region": "Massachusetts",
"countryAlpha2": "AU",
"sellerUserId": 171,
"isSold": false,
"createdAt": "2025-03-24T05:33:18.045Z",
"updatedAt": "2025-12-02T02:24:15.490Z"
}