example-data.com

cars / #168

2013 BMW M3

BMW

USD39150.00

automatic · gas · 135701 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/168"
)
car = res.json()
{
  "id": 168,
  "make": "BMW",
  "model": "M3",
  "year": 2013,
  "trim": "SE",
  "vin": "WFF8TU2JMV7EJ9JLW",
  "color": "Red",
  "mileage": 135701,
  "price": 39150,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Port Novaview",
  "region": "Massachusetts",
  "countryAlpha2": "CL",
  "sellerUserId": 234,
  "isSold": false,
  "createdAt": "2026-02-17T15:45:04.118Z",
  "updatedAt": "2026-05-18T21:38:23.651Z"
}
Draftbit