example-data.com

cars / #172

2012 BMW iX

BMW

USD97370.00

automatic · plugin_hybrid · 194510 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/172"
)
car = res.json()
{
  "id": 172,
  "make": "BMW",
  "model": "iX",
  "year": 2012,
  "trim": null,
  "vin": "8FSHFLUXT3JBZR304",
  "color": "White",
  "mileage": 194510,
  "price": 97370,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "plugin_hybrid",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Marlinland",
  "region": "Washington",
  "countryAlpha2": "EG",
  "sellerUserId": 35,
  "isSold": true,
  "createdAt": "2025-11-10T17:51:34.993Z",
  "updatedAt": "2025-11-26T23:55:01.006Z"
}
Draftbit