example-data.com

cars / #51

2019 BMW X3

BMW

USD76790.00

automatic · gas · 49766 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/51"
)
car = res.json()
{
  "id": 51,
  "make": "BMW",
  "model": "X3",
  "year": 2019,
  "trim": "LX",
  "vin": "HTGAE8D4G4HV0L99Y",
  "color": "Blue",
  "mileage": 49766,
  "price": 76790,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Schaeferboro",
  "region": "New York",
  "countryAlpha2": "NO",
  "sellerUserId": 225,
  "isSold": false,
  "createdAt": "2026-02-28T14:23:18.381Z",
  "updatedAt": "2026-05-11T08:55:34.878Z"
}
Draftbit