example-data.com

cars / #81

2025 Mercedes GLC

Mercedes

USD74930.00

automatic · gas · 19232 mi · White

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/81"
)
car = res.json()
{
  "id": 81,
  "make": "Mercedes",
  "model": "GLC",
  "year": 2025,
  "trim": "Premium",
  "vin": "0XJ519SC40Z21ZYCW",
  "color": "White",
  "mileage": 19232,
  "price": 74930,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Fort Dulce",
  "region": "Maine",
  "countryAlpha2": "JP",
  "sellerUserId": 142,
  "isSold": false,
  "createdAt": "2025-04-27T06:19:16.827Z",
  "updatedAt": "2025-11-26T02:39:16.655Z"
}
Draftbit