2012 BMW iX
BMW
USD72720.00
automatic · gas · 75510 mi · Black
Overview
cars / #29
BMW
USD72720.00
automatic · gas · 75510 mi · Black
2012 BMW iX
BMW
USD72720.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/29" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/29" ); 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/29"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/29"
)
car = res.json() Response
{
"id": 29,
"make": "BMW",
"model": "iX",
"year": 2012,
"trim": null,
"vin": "N3ATJGLVG9Y48Y9WH",
"color": "Black",
"mileage": 75510,
"price": 72720,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Fort Joesphfort",
"region": "West Virginia",
"countryAlpha2": "KR",
"sellerUserId": 5,
"isSold": true,
"createdAt": "2025-10-25T16:41:22.321Z",
"updatedAt": "2025-12-06T10:30:09.503Z"
}