2024 BMW X3
BMW
USD16240.00
manual · electric · 24610 mi · Brown
Overview
cars / #164
BMW
USD16240.00
manual · electric · 24610 mi · Brown
2024 BMW X3
BMW
USD16240.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/164" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/164" ); 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/164"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/164"
)
car = res.json() Response
{
"id": 164,
"make": "BMW",
"model": "X3",
"year": 2024,
"trim": "EX",
"vin": "ZCVH5JYM2GNSDSKY5",
"color": "Brown",
"mileage": 24610,
"price": 16240,
"currency": "USD",
"transmission": "manual",
"fuelType": "electric",
"bodyType": "sedan",
"listingType": "sale",
"city": "Port Kailyn",
"region": "South Carolina",
"countryAlpha2": "IT",
"sellerUserId": 86,
"isSold": true,
"createdAt": "2024-06-19T10:50:26.412Z",
"updatedAt": "2024-10-31T13:13:43.524Z"
}