example-data.com

cars / #8

2022 BMW M3

BMW

USD119300.00

automatic · hybrid · 43461 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/8"
)
car = res.json()
{
  "id": 8,
  "make": "BMW",
  "model": "M3",
  "year": 2022,
  "trim": "Premium",
  "vin": "K2P6LURYA6ZMW7RW3",
  "color": "Black",
  "mileage": 43461,
  "price": 119300,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Maple Grove",
  "region": "Michigan",
  "countryAlpha2": "AE",
  "sellerUserId": 36,
  "isSold": false,
  "createdAt": "2026-04-09T07:35:29.656Z",
  "updatedAt": "2026-05-10T05:16:57.838Z"
}
Draftbit