2025 Audi Q5
Audi
USD101060.00
automatic · gas · 22089 mi · White
cars / #38
Audi
USD101060.00
automatic · gas · 22089 mi · White
curl -sS \
"https://example-data.com/api/v1/cars/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/38"
);
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/38"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/38"
)
car = res.json() {
"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"
}