example-data.com

cars / #77

2017 Chevrolet Malibu

Chevrolet

USD120.00

cvt · gas · 76863 mi · Gray

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/77"
)
car = res.json()
{
  "id": 77,
  "make": "Chevrolet",
  "model": "Malibu",
  "year": 2017,
  "trim": "Sport",
  "vin": "23L7M0CNFWJ14ZMRC",
  "color": "Gray",
  "mileage": 76863,
  "price": 120,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "rent",
  "city": "South Ashleefield",
  "region": "Georgia",
  "countryAlpha2": "NZ",
  "sellerUserId": 128,
  "isSold": false,
  "createdAt": "2025-05-31T19:37:23.362Z",
  "updatedAt": "2025-12-18T17:17:46.321Z"
}
Draftbit