example-data.com

cars / #99

2020 Mercedes E-Class

Mercedes

USD27010.00

manual · electric · 65769 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/99"
)
car = res.json()
{
  "id": 99,
  "make": "Mercedes",
  "model": "E-Class",
  "year": 2020,
  "trim": "Touring",
  "vin": "HCF6S0P68GMYLYTCC",
  "color": "Beige",
  "mileage": 65769,
  "price": 27010,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "electric",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Port Robertafort",
  "region": "Louisiana",
  "countryAlpha2": "US",
  "sellerUserId": 5,
  "isSold": false,
  "createdAt": "2025-07-12T09:23:18.375Z",
  "updatedAt": "2025-12-28T22:30:06.512Z"
}
Draftbit