example-data.com

cars / #116

2015 BMW 3 Series

BMW

USD76670.00

automatic · gas · 93489 mi · Red

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/116"
)
car = res.json()
{
  "id": 116,
  "make": "BMW",
  "model": "3 Series",
  "year": 2015,
  "trim": "LX",
  "vin": "V5V3C0B886JJU46HZ",
  "color": "Red",
  "mileage": 93489,
  "price": 76670,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "West Fredyland",
  "region": "Alabama",
  "countryAlpha2": "BE",
  "sellerUserId": 91,
  "isSold": false,
  "createdAt": "2024-07-19T17:26:39.943Z",
  "updatedAt": "2025-08-16T19:23:33.618Z"
}
Draftbit