2010 BMW M3
BMW
USD103110.00
automatic · gas · 192486 mi · Black
Overview
cars / #132
BMW
USD103110.00
automatic · gas · 192486 mi · Black
2010 BMW M3
BMW
USD103110.00
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/132" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/132" ); 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/132"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/132"
)
car = res.json() Response
{
"id": 132,
"make": "BMW",
"model": "M3",
"year": 2010,
"trim": "Touring",
"vin": "EFRKNFPN7S3UP5F1V",
"color": "Black",
"mileage": 192486,
"price": 103110,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "North Vicente",
"region": "Oklahoma",
"countryAlpha2": "GR",
"sellerUserId": 7,
"isSold": false,
"createdAt": "2026-03-13T13:00:55.931Z",
"updatedAt": "2026-05-13T16:43:35.232Z"
}