2010 BMW 3 Series
BMW
USD52610.00
automatic · electric · 227389 mi · Beige
Overview
cars / #171
BMW
USD52610.00
automatic · electric · 227389 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/171" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/171" ); 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/171"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/171"
)
car = res.json() Response
{
"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"
}