2017 Audi Q5
Audi
USD89010.00
automatic · gas · 147577 mi · White
Overview
cars / #117
Audi
USD89010.00
automatic · gas · 147577 mi · White
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/117" ); 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/117"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/117"
)
car = res.json() Response
{
"id": 117,
"make": "Audi",
"model": "Q5",
"year": 2017,
"trim": null,
"vin": "D792SXAP1R6WS6SBZ",
"color": "White",
"mileage": 147577,
"price": 89010,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Shanellestead",
"region": "California",
"countryAlpha2": "SG",
"sellerUserId": 202,
"isSold": false,
"createdAt": "2025-09-10T15:20:28.138Z",
"updatedAt": "2025-09-27T23:28:42.340Z"
}