2012 BMW iX
BMW
USD77920.00
automatic · electric · 89019 mi · Yellow
cars / #39
BMW
USD77920.00
automatic · electric · 89019 mi · Yellow
2012 BMW iX
BMW
USD77920.00
curl -sS \
"https://example-data.com/api/v1/cars/39" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/39"
);
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/39"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/39"
)
car = res.json() {
"id": 39,
"make": "BMW",
"model": "iX",
"year": 2012,
"trim": null,
"vin": "S5YTXX6VBZZX1SY00",
"color": "Yellow",
"mileage": 89019,
"price": 77920,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "sedan",
"listingType": "sale",
"city": "Christiansenville",
"region": "Pennsylvania",
"countryAlpha2": "MA",
"sellerUserId": 128,
"isSold": false,
"createdAt": "2025-11-27T15:57:56.941Z",
"updatedAt": "2025-11-27T17:57:36.220Z"
}