example-data.com

cars / #192

2023 BMW X5

BMW

USD70400.00

automatic · gas · 13707 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/192"
)
car = res.json()
{
  "id": 192,
  "make": "BMW",
  "model": "X5",
  "year": 2023,
  "trim": "EX",
  "vin": "HG0TNFJXCH4F01VZH",
  "color": "Beige",
  "mileage": 13707,
  "price": 70400,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Bradenton",
  "region": "Tennessee",
  "countryAlpha2": "ID",
  "sellerUserId": 229,
  "isSold": false,
  "createdAt": "2025-06-17T21:20:14.873Z",
  "updatedAt": "2025-12-13T17:41:50.030Z"
}
Draftbit