example-data.com

cars / #125

2022 Mercedes S-Class

Mercedes

USD99960.00

automatic · gas · 54404 mi · Beige

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/125"
)
car = res.json()
{
  "id": 125,
  "make": "Mercedes",
  "model": "S-Class",
  "year": 2022,
  "trim": "Touring",
  "vin": "EHZZ6VZY0GYW3LJBV",
  "color": "Beige",
  "mileage": 54404,
  "price": 99960,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Mariloucester",
  "region": "Arizona",
  "countryAlpha2": "SE",
  "sellerUserId": 217,
  "isSold": false,
  "createdAt": "2026-04-20T19:57:03.504Z",
  "updatedAt": "2026-05-11T06:56:53.509Z"
}
Draftbit