2013 BMW 5 Series
BMW
USD5170.00
automatic · electric · 86696 mi · Blue
Overview
cars / #98
BMW
USD5170.00
automatic · electric · 86696 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/98" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/98" ); 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/98"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/98"
)
car = res.json() Response
{
"id": 98,
"make": "BMW",
"model": "5 Series",
"year": 2013,
"trim": null,
"vin": "B4E4CWWM0AZY3X5HS",
"color": "Blue",
"mileage": 86696,
"price": 5170,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "coupe",
"listingType": "sale",
"city": "North Anika",
"region": "Nebraska",
"countryAlpha2": "MX",
"sellerUserId": 105,
"isSold": false,
"createdAt": "2024-09-12T21:28:38.630Z",
"updatedAt": "2026-03-13T04:56:06.146Z"
}