2025 Audi Q5
Audi
USD101060.00
automatic · gas · 22089 mi · White
Overview
cars / #38
Audi
USD101060.00
automatic · gas · 22089 mi · White
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/38" ); 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/38"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/38"
)
car = res.json() Response
{
"id": 38,
"make": "Audi",
"model": "Q5",
"year": 2025,
"trim": "Premium",
"vin": "0JD6AAZ3FG0XFCAR8",
"color": "White",
"mileage": 22089,
"price": 101060,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "New Hollieshire",
"region": "Kansas",
"countryAlpha2": "CH",
"sellerUserId": 177,
"isSold": false,
"createdAt": "2026-02-22T13:02:07.905Z",
"updatedAt": "2026-05-13T05:56:19.093Z"
}