2025 Mercedes GLC
Mercedes
USD74930.00
automatic · gas · 19232 mi · White
Overview
cars / #81
Mercedes
USD74930.00
automatic · gas · 19232 mi · White
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/81" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/81" ); 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/81"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/81"
)
car = res.json() Response
{
"id": 81,
"make": "Mercedes",
"model": "GLC",
"year": 2025,
"trim": "Premium",
"vin": "0XJ519SC40Z21ZYCW",
"color": "White",
"mileage": 19232,
"price": 74930,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Fort Dulce",
"region": "Maine",
"countryAlpha2": "JP",
"sellerUserId": 142,
"isSold": false,
"createdAt": "2025-04-27T06:19:16.827Z",
"updatedAt": "2025-11-26T02:39:16.655Z"
}