example-data.com

cars / #189

2024 BMW i4

BMW

USD108350.00

cvt · gas · 13139 mi · Yellow

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/189"
)
car = res.json()
{
  "id": 189,
  "make": "BMW",
  "model": "i4",
  "year": 2024,
  "trim": "Sport",
  "vin": "A8H531FY6N7RRHFDX",
  "color": "Yellow",
  "mileage": 13139,
  "price": 108350,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Vladimirfurt",
  "region": "Mississippi",
  "countryAlpha2": "BR",
  "sellerUserId": 189,
  "isSold": true,
  "createdAt": "2024-08-20T03:59:12.949Z",
  "updatedAt": "2026-01-23T01:00:36.047Z"
}
Draftbit