2016 BMW M3
BMW
USD20480.00
automatic · gas · 70020 mi · Yellow
cars / #111
BMW
USD20480.00
automatic · gas · 70020 mi · Yellow
2016 BMW M3
BMW
USD20480.00
curl -sS \
"https://example-data.com/api/v1/cars/111" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/111"
);
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/111"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/111"
)
car = res.json() {
"id": 111,
"make": "BMW",
"model": "M3",
"year": 2016,
"trim": null,
"vin": "6BLBSSYWTV13T1MYB",
"color": "Yellow",
"mileage": 70020,
"price": 20480,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Lake Stephon",
"region": "Hawaii",
"countryAlpha2": "FI",
"sellerUserId": 118,
"isSold": false,
"createdAt": "2024-12-06T23:56:52.236Z",
"updatedAt": "2026-04-12T02:27:29.025Z"
}