2015 BMW 5 Series
BMW
USD94790.00
automatic · gas · 62431 mi · Blue
Overview
cars / #20
BMW
USD94790.00
automatic · gas · 62431 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/20" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/20" ); 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/20"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/20"
)
car = res.json() Response
{
"id": 20,
"make": "BMW",
"model": "5 Series",
"year": 2015,
"trim": null,
"vin": "UFA4B6YL20P8SSW3E",
"color": "Blue",
"mileage": 62431,
"price": 94790,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Carson",
"region": "Indiana",
"countryAlpha2": "GR",
"sellerUserId": 236,
"isSold": false,
"createdAt": "2025-09-03T14:00:12.312Z",
"updatedAt": "2026-04-07T21:42:25.600Z"
}