example-data.com

cars / #135

2026 Chevrolet Traverse

Chevrolet

USD36480.00

manual · gas · 2134 mi · Yellow

Component variants

Related

Referenced by

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"
}
Draftbit