2024 BMW X3
BMW
USD16240.00
manual · electric · 24610 mi · Brown
cars / #164
BMW
USD16240.00
manual · electric · 24610 mi · Brown
2024 BMW X3
BMW
USD16240.00
curl -sS \
"https://example-data.com/api/v1/cars/164" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/164"
);
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/164"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/164"
)
car = res.json() {
"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"
}