2014 Mercedes EQS
Mercedes
USD93280.00
automatic · gas · 76691 mi · White
cars / #119
Mercedes
USD93280.00
automatic · gas · 76691 mi · White
curl -sS \
"https://example-data.com/api/v1/cars/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/119"
);
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/119"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/119"
)
car = res.json() {
"id": 119,
"make": "Mercedes",
"model": "EQS",
"year": 2014,
"trim": "Sport",
"vin": "65MLK20WW3RJ9MXTB",
"color": "White",
"mileage": 76691,
"price": 93280,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "MacGyverworth",
"region": "Maryland",
"countryAlpha2": "JP",
"sellerUserId": 35,
"isSold": false,
"createdAt": "2026-01-11T00:10:28.965Z",
"updatedAt": "2026-04-23T06:34:39.456Z"
}