2013 Mercedes C-Class
Mercedes
USD150.00
automatic · gas · 232597 mi · Silver
cars / #138
Mercedes
USD150.00
automatic · gas · 232597 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/138"
);
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/138"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/138"
)
car = res.json() {
"id": 138,
"make": "Mercedes",
"model": "C-Class",
"year": 2013,
"trim": "Sport",
"vin": "DENR9BXM2PYMNCFX1",
"color": "Silver",
"mileage": 232597,
"price": 150,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "rent",
"city": "North Favianland",
"region": "South Dakota",
"countryAlpha2": "PH",
"sellerUserId": 47,
"isSold": false,
"createdAt": "2025-12-11T13:12:51.485Z",
"updatedAt": "2026-04-06T12:58:14.374Z"
}