example-data.com

cars / #15

2022 BMW iX

BMW

USD47370.00

automatic · gas · 63591 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/15"
)
car = res.json()
{
  "id": 15,
  "make": "BMW",
  "model": "iX",
  "year": 2022,
  "trim": "Limited",
  "vin": "8A0T3WYA6KXDNDJYF",
  "color": "Black",
  "mileage": 63591,
  "price": 47370,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "East Christy",
  "region": "Oregon",
  "countryAlpha2": "FR",
  "sellerUserId": 168,
  "isSold": false,
  "createdAt": "2025-11-30T08:57:06.542Z",
  "updatedAt": "2026-04-20T04:44:29.714Z"
}
Draftbit