example-data.com

cars / #23

2024 Chevrolet Suburban

Chevrolet

USD80.00

automatic · diesel · 38754 mi · Gray

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/23"
)
car = res.json()
{
  "id": 23,
  "make": "Chevrolet",
  "model": "Suburban",
  "year": 2024,
  "trim": "EX",
  "vin": "WUA72YN8FD54K6J8X",
  "color": "Gray",
  "mileage": 38754,
  "price": 80,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "Burbank",
  "region": "Maine",
  "countryAlpha2": "DK",
  "sellerUserId": 228,
  "isSold": false,
  "createdAt": "2025-12-20T22:53:20.223Z",
  "updatedAt": "2026-04-13T14:24:15.588Z"
}
Draftbit