2022 Mercedes S-Class
Mercedes
USD99960.00
automatic · gas · 54404 mi · Beige
Overview
cars / #125
Mercedes
USD99960.00
automatic · gas · 54404 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/125" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/125" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/125"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/125"
)
car = res.json() Response
{
"id": 125,
"make": "Mercedes",
"model": "S-Class",
"year": 2022,
"trim": "Touring",
"vin": "EHZZ6VZY0GYW3LJBV",
"color": "Beige",
"mileage": 54404,
"price": 99960,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Mariloucester",
"region": "Arizona",
"countryAlpha2": "SE",
"sellerUserId": 217,
"isSold": false,
"createdAt": "2026-04-20T19:57:03.504Z",
"updatedAt": "2026-05-11T06:56:53.509Z"
}