example-data.com

cars / #20

2015 BMW 5 Series

BMW

USD94790.00

automatic · gas · 62431 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/20"
)
car = res.json()
{
  "id": 20,
  "make": "BMW",
  "model": "5 Series",
  "year": 2015,
  "trim": null,
  "vin": "UFA4B6YL20P8SSW3E",
  "color": "Blue",
  "mileage": 62431,
  "price": 94790,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Carson",
  "region": "Indiana",
  "countryAlpha2": "GR",
  "sellerUserId": 236,
  "isSold": false,
  "createdAt": "2025-09-03T14:00:12.312Z",
  "updatedAt": "2026-04-07T21:42:25.600Z"
}
Draftbit