2026 BMW 5 Series
BMW
USD119000.00
automatic · hybrid · 1202 mi · Yellow
cars / #185
BMW
USD119000.00
automatic · hybrid · 1202 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/185"
);
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/185"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/185"
)
car = res.json() {
"id": 185,
"make": "BMW",
"model": "5 Series",
"year": 2026,
"trim": "Platinum",
"vin": "JAFS1VC502NC4PAXC",
"color": "Yellow",
"mileage": 1202,
"price": 119000,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "sedan",
"listingType": "sale",
"city": "Bergstromfort",
"region": "Oregon",
"countryAlpha2": "SG",
"sellerUserId": 186,
"isSold": false,
"createdAt": "2026-05-08T18:57:55.230Z",
"updatedAt": "2026-05-09T13:43:32.071Z"
}