2011 Mercedes C-Class
Mercedes
USD16760.00
automatic · hybrid · 116385 mi · Red
Overview
cars / #86
Mercedes
USD16760.00
automatic · hybrid · 116385 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/86" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/86" ); 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/86"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/86"
)
car = res.json() Response
{
"id": 86,
"make": "Mercedes",
"model": "C-Class",
"year": 2011,
"trim": "Touring",
"vin": "2UFR38NGFJAFX11DB",
"color": "Red",
"mileage": 116385,
"price": 16760,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "East Coltonfurt",
"region": "Idaho",
"countryAlpha2": "KE",
"sellerUserId": 187,
"isSold": false,
"createdAt": "2024-07-05T00:20:14.299Z",
"updatedAt": "2025-05-19T11:02:20.824Z"
}