example-data.com

cars / #33

2023 Chevrolet Malibu

Chevrolet

USD26360.00

automatic · gas · 31852 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/33"
)
car = res.json()
{
  "id": 33,
  "make": "Chevrolet",
  "model": "Malibu",
  "year": 2023,
  "trim": "LX",
  "vin": "30YJL69NE8AS5TSFY",
  "color": "Brown",
  "mileage": 31852,
  "price": 26360,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Moore",
  "region": "South Carolina",
  "countryAlpha2": "SA",
  "sellerUserId": 206,
  "isSold": true,
  "createdAt": "2025-10-10T07:40:59.755Z",
  "updatedAt": "2026-01-15T07:33:56.598Z"
}
Draftbit