example-data.com

cars / #89

2010 Mercedes S-Class

Mercedes

USD103590.00

automatic · electric · 140320 mi · Red

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/89"
)
car = res.json()
{
  "id": 89,
  "make": "Mercedes",
  "model": "S-Class",
  "year": 2010,
  "trim": "Limited",
  "vin": "FFA1W9DG98YZASKK3",
  "color": "Red",
  "mileage": 140320,
  "price": 103590,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Carleychester",
  "region": "Washington",
  "countryAlpha2": "PL",
  "sellerUserId": 223,
  "isSold": false,
  "createdAt": "2025-08-18T14:57:41.821Z",
  "updatedAt": "2025-11-05T14:27:55.952Z"
}
Draftbit