example-data.com

cars / #16

2010 BMW 3 Series

BMW

USD102430.00

automatic · gas · 128574 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/16"
)
car = res.json()
{
  "id": 16,
  "make": "BMW",
  "model": "3 Series",
  "year": 2010,
  "trim": null,
  "vin": "D0FAYRFAAZHAD7NFF",
  "color": "Blue",
  "mileage": 128574,
  "price": 102430,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Rohancester",
  "region": "Arizona",
  "countryAlpha2": "AR",
  "sellerUserId": 160,
  "isSold": false,
  "createdAt": "2024-11-27T14:12:37.228Z",
  "updatedAt": "2026-02-23T04:21:48.108Z"
}
Draftbit