example-data.com

cars / #42

2018 BMW X3

BMW

USD58380.00

automatic · gas · 80760 mi · Green

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/42"
)
car = res.json()
{
  "id": 42,
  "make": "BMW",
  "model": "X3",
  "year": 2018,
  "trim": null,
  "vin": "UHNZYKKHMUA3RFYT7",
  "color": "Green",
  "mileage": 80760,
  "price": 58380,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Ricardochester",
  "region": "New Mexico",
  "countryAlpha2": "NG",
  "sellerUserId": 49,
  "isSold": false,
  "createdAt": "2024-10-13T17:33:54.644Z",
  "updatedAt": "2024-12-15T15:23:17.063Z"
}
Draftbit