example-data.com

cars / #141

2021 Mercedes EQS

Mercedes

USD108870.00

automatic · gas · 46365 mi · Gray

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/141"
)
car = res.json()
{
  "id": 141,
  "make": "Mercedes",
  "model": "EQS",
  "year": 2021,
  "trim": "EX",
  "vin": "BYX6WY8YBFXRS59E9",
  "color": "Gray",
  "mileage": 46365,
  "price": 108870,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Larsonstad",
  "region": "Florida",
  "countryAlpha2": "TH",
  "sellerUserId": 139,
  "isSold": false,
  "createdAt": "2026-01-05T01:53:12.051Z",
  "updatedAt": "2026-02-02T11:44:08.294Z"
}
Draftbit