example-data.com

cars / #108

2020 Mercedes S-Class

Mercedes

USD104700.00

automatic · gas · 20155 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/108"
)
car = res.json()
{
  "id": 108,
  "make": "Mercedes",
  "model": "S-Class",
  "year": 2020,
  "trim": "EX",
  "vin": "0M6SSC6BRKFXYBTH1",
  "color": "Red",
  "mileage": 20155,
  "price": 104700,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Albany",
  "region": "Arizona",
  "countryAlpha2": "SG",
  "sellerUserId": 102,
  "isSold": false,
  "createdAt": "2026-01-13T00:51:16.015Z",
  "updatedAt": "2026-01-28T13:33:08.715Z"
}
Draftbit