example-data.com

cars / #153

2020 Mercedes GLC

Mercedes

USD34730.00

automatic · gas · 52615 mi · Beige

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/153"
)
car = res.json()
{
  "id": 153,
  "make": "Mercedes",
  "model": "GLC",
  "year": 2020,
  "trim": "Limited",
  "vin": "W3KCWEZVZG8XPWW3L",
  "color": "Beige",
  "mileage": 52615,
  "price": 34730,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Fort Genefield",
  "region": "Washington",
  "countryAlpha2": "PK",
  "sellerUserId": 231,
  "isSold": false,
  "createdAt": "2025-06-20T02:46:19.933Z",
  "updatedAt": "2025-10-08T13:22:59.430Z"
}
Draftbit