2022 Chevrolet Suburban
Chevrolet
USD100860.00
automatic · diesel · 67181 mi · Beige
Overview
cars / #76
Chevrolet
USD100860.00
automatic · diesel · 67181 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/76" ); 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/76"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/76"
)
car = res.json() Response
{
"id": 76,
"make": "Chevrolet",
"model": "Suburban",
"year": 2022,
"trim": null,
"vin": "8NVECBHCSY2R7HCSM",
"color": "Beige",
"mileage": 67181,
"price": 100860,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "van",
"listingType": "sale",
"city": "Opalhaven",
"region": "Tennessee",
"countryAlpha2": "PT",
"sellerUserId": 170,
"isSold": false,
"createdAt": "2026-04-03T17:40:19.053Z",
"updatedAt": "2026-05-06T22:39:59.366Z"
}