2010 BMW 3 Series
BMW
USD52610.00
automatic · electric · 227389 mi · Beige
cars / #171
BMW
USD52610.00
automatic · electric · 227389 mi · Beige
curl -sS \
"https://example-data.com/api/v1/cars/171" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/171"
);
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/171"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/171"
)
car = res.json() {
"id": 171,
"make": "BMW",
"model": "3 Series",
"year": 2010,
"trim": "LX",
"vin": "CJRW34AR5XDMJ8YN4",
"color": "Beige",
"mileage": 227389,
"price": 52610,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "suv",
"listingType": "sale",
"city": "West Gudrun",
"region": "North Dakota",
"countryAlpha2": "AE",
"sellerUserId": 167,
"isSold": false,
"createdAt": "2026-02-06T14:19:05.166Z",
"updatedAt": "2026-05-15T07:34:19.141Z"
}