2012 BMW iX
BMW
USD77920.00
automatic · electric · 89019 mi · Yellow
Overview
cars / #39
BMW
USD77920.00
automatic · electric · 89019 mi · Yellow
2012 BMW iX
BMW
USD77920.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/39" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/39" ); 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/39"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/39"
)
car = res.json() Response
{
"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"
}