2010 BMW M3
BMW
USD103110.00
automatic · gas · 192486 mi · Black
cars / #132
BMW
USD103110.00
automatic · gas · 192486 mi · Black
2010 BMW M3
BMW
USD103110.00
curl -sS \
"https://example-data.com/api/v1/cars/132" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/132"
);
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/132"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/132"
)
car = res.json() {
"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"
}