2014 BMW 5 Series
BMW
USD83790.00
automatic · gas · 91956 mi · Red
Overview
cars / #142
BMW
USD83790.00
automatic · gas · 91956 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/142" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/142" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/142"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/142"
)
car = res.json() Response
{
"id": 142,
"make": "BMW",
"model": "5 Series",
"year": 2014,
"trim": "Premium",
"vin": "W38D0F1D31DNFZWK9",
"color": "Red",
"mileage": 91956,
"price": 83790,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "Leannonfield",
"region": "California",
"countryAlpha2": "IE",
"sellerUserId": 85,
"isSold": true,
"createdAt": "2025-06-28T19:33:33.497Z",
"updatedAt": "2026-03-21T16:56:51.461Z"
}