example-data.com

cars / #29

2012 BMW iX

BMW

USD72720.00

automatic · gas · 75510 mi · Black

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/29" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/29"
);
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/29"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/29"
)
car = res.json()
{
  "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"
}
Draftbit