example-data.com

cars / #19

2016 Mercedes EQS

Mercedes

USD106170.00

automatic · diesel · 118795 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/19"
)
car = res.json()
{
  "id": 19,
  "make": "Mercedes",
  "model": "EQS",
  "year": 2016,
  "trim": null,
  "vin": "FAHN4254AZS9K20XZ",
  "color": "Blue",
  "mileage": 118795,
  "price": 106170,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Mollieland",
  "region": "Nebraska",
  "countryAlpha2": "CO",
  "sellerUserId": 34,
  "isSold": true,
  "createdAt": "2024-11-18T21:16:12.688Z",
  "updatedAt": "2025-03-14T13:13:10.300Z"
}
Draftbit