example-data.com

cars / #64

2016 Mercedes EQS

Mercedes

USD75480.00

automatic · gas · 178009 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/64"
)
car = res.json()
{
  "id": 64,
  "make": "Mercedes",
  "model": "EQS",
  "year": 2016,
  "trim": "Limited",
  "vin": "7G1UY9JR8K5A0TJUL",
  "color": "Black",
  "mileage": 178009,
  "price": 75480,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "New Alvastead",
  "region": "Tennessee",
  "countryAlpha2": "PH",
  "sellerUserId": 6,
  "isSold": false,
  "createdAt": "2025-12-22T14:10:09.463Z",
  "updatedAt": "2026-04-11T11:09:27.705Z"
}
Draftbit