example-data.com

cars / #9

2024 Mercedes GLC

Mercedes

USD96420.00

automatic · gas · 39636 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/9"
)
car = res.json()
{
  "id": 9,
  "make": "Mercedes",
  "model": "GLC",
  "year": 2024,
  "trim": null,
  "vin": "VTDETRB07TSSE3EA9",
  "color": "Black",
  "mileage": 39636,
  "price": 96420,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Nathanielshire",
  "region": "Illinois",
  "countryAlpha2": "IS",
  "sellerUserId": 191,
  "isSold": false,
  "createdAt": "2025-05-18T04:24:51.203Z",
  "updatedAt": "2026-03-17T06:42:59.518Z"
}
Draftbit