example-data.com

cars / #184

2022 Mercedes EQS

Mercedes

USD111080.00

automatic · electric · 7222 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/184"
)
car = res.json()
{
  "id": 184,
  "make": "Mercedes",
  "model": "EQS",
  "year": 2022,
  "trim": "Touring",
  "vin": "9JEDKTA5WRSPZNCSJ",
  "color": "Silver",
  "mileage": 7222,
  "price": 111080,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Cranston",
  "region": "Arizona",
  "countryAlpha2": "CA",
  "sellerUserId": 183,
  "isSold": true,
  "createdAt": "2026-04-07T22:51:38.795Z",
  "updatedAt": "2026-05-21T05:46:13.548Z"
}
Draftbit