2013 BMW M3
BMW
USD39150.00
automatic · gas · 135701 mi · Red
Overview
cars / #168
BMW
USD39150.00
automatic · gas · 135701 mi · Red
2013 BMW M3
BMW
USD39150.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/168" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/168" ); 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/168"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/168"
)
car = res.json() Response
{
"id": 168,
"make": "BMW",
"model": "M3",
"year": 2013,
"trim": "SE",
"vin": "WFF8TU2JMV7EJ9JLW",
"color": "Red",
"mileage": 135701,
"price": 39150,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Port Novaview",
"region": "Massachusetts",
"countryAlpha2": "CL",
"sellerUserId": 234,
"isSold": false,
"createdAt": "2026-02-17T15:45:04.118Z",
"updatedAt": "2026-05-18T21:38:23.651Z"
}