example-data.com

cars / #142

2014 BMW 5 Series

BMW

USD83790.00

automatic · gas · 91956 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/142"
)
car = res.json()
{
  "id": 142,
  "make": "BMW",
  "model": "5 Series",
  "year": 2014,
  "trim": "Premium",
  "vin": "W38D0F1D31DNFZWK9",
  "color": "Red",
  "mileage": 91956,
  "price": 83790,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Leannonfield",
  "region": "California",
  "countryAlpha2": "IE",
  "sellerUserId": 85,
  "isSold": true,
  "createdAt": "2025-06-28T19:33:33.497Z",
  "updatedAt": "2026-03-21T16:56:51.461Z"
}
Draftbit