example-data.com

cars / #93

2018 Chevrolet Traverse

Chevrolet

USD140.00

cvt · gas · 51113 mi · Gray

Component variants

Related

Referenced by

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

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