example-data.com

cars / #12

2018 BMW iX

BMW

USD23570.00

automatic · gas · 94382 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/12"
)
car = res.json()
{
  "id": 12,
  "make": "BMW",
  "model": "iX",
  "year": 2018,
  "trim": "Platinum",
  "vin": "G6K0KR02CR6F6V68W",
  "color": "Black",
  "mileage": 94382,
  "price": 23570,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "Port Margarett",
  "region": "New Mexico",
  "countryAlpha2": "ET",
  "sellerUserId": 171,
  "isSold": true,
  "createdAt": "2025-12-19T22:58:36.904Z",
  "updatedAt": "2026-04-23T15:15:55.215Z"
}
Draftbit