example-data.com

cars / #76

2022 Chevrolet Suburban

Chevrolet

USD100860.00

automatic · diesel · 67181 mi · Beige

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/76" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/76"
);
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/76"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/76"
)
car = res.json()
{
  "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"
}
Draftbit