example-data.com

cars / #98

2013 BMW 5 Series

BMW

USD5170.00

automatic · electric · 86696 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/98"
)
car = res.json()
{
  "id": 98,
  "make": "BMW",
  "model": "5 Series",
  "year": 2013,
  "trim": null,
  "vin": "B4E4CWWM0AZY3X5HS",
  "color": "Blue",
  "mileage": 86696,
  "price": 5170,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "North Anika",
  "region": "Nebraska",
  "countryAlpha2": "MX",
  "sellerUserId": 105,
  "isSold": false,
  "createdAt": "2024-09-12T21:28:38.630Z",
  "updatedAt": "2026-03-13T04:56:06.146Z"
}
Draftbit