2023 Mercedes GLE
Mercedes
USD12070.00
automatic · diesel · 41435 mi · Beige
Overview
cars / #114
Mercedes
USD12070.00
automatic · diesel · 41435 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/114" ); 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/114"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/114"
)
car = res.json() Response
{
"id": 114,
"make": "Mercedes",
"model": "GLE",
"year": 2023,
"trim": null,
"vin": "20P5NKHU3EPARCLNK",
"color": "Beige",
"mileage": 41435,
"price": 12070,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "coupe",
"listingType": "sale",
"city": "New Juvenalhaven",
"region": "New Hampshire",
"countryAlpha2": "PH",
"sellerUserId": 163,
"isSold": false,
"createdAt": "2024-10-12T16:55:56.135Z",
"updatedAt": "2025-02-19T05:52:33.026Z"
}