2017 BMW i4
BMW
USD76050.00
automatic · gas · 63641 mi · Yellow
cars / #94
BMW
USD76050.00
automatic · gas · 63641 mi · Yellow
2017 BMW i4
BMW
USD76050.00
curl -sS \
"https://example-data.com/api/v1/cars/94" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/94"
);
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/94"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/94"
)
car = res.json() {
"id": 94,
"make": "BMW",
"model": "i4",
"year": 2017,
"trim": "Touring",
"vin": "P7WVFYYWH4P5PJ5C5",
"color": "Yellow",
"mileage": 63641,
"price": 76050,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Port Emmanuelleville",
"region": "Kentucky",
"countryAlpha2": "TH",
"sellerUserId": 192,
"isSold": true,
"createdAt": "2025-03-22T15:53:07.619Z",
"updatedAt": "2025-05-30T21:15:25.719Z"
}