2018 BMW X3
BMW
USD58380.00
automatic · gas · 80760 mi · Green
Overview
cars / #42
BMW
USD58380.00
automatic · gas · 80760 mi · Green
2018 BMW X3
BMW
USD58380.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/42" ); 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/42"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/42"
)
car = res.json() Response
{
"id": 42,
"make": "BMW",
"model": "X3",
"year": 2018,
"trim": null,
"vin": "UHNZYKKHMUA3RFYT7",
"color": "Green",
"mileage": 80760,
"price": 58380,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Ricardochester",
"region": "New Mexico",
"countryAlpha2": "NG",
"sellerUserId": 49,
"isSold": false,
"createdAt": "2024-10-13T17:33:54.644Z",
"updatedAt": "2024-12-15T15:23:17.063Z"
}