2015 Audi Q7
Audi
USD28890.00
manual · gas · 158115 mi · Silver
cars / #120
Audi
USD28890.00
manual · gas · 158115 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/120" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/120"
);
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/120"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/120"
)
car = res.json() {
"id": 120,
"make": "Audi",
"model": "Q7",
"year": 2015,
"trim": null,
"vin": "GLL5DSTAH7DCRHP0A",
"color": "Silver",
"mileage": 158115,
"price": 28890,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "West Karleychester",
"region": "Montana",
"countryAlpha2": "DE",
"sellerUserId": 140,
"isSold": false,
"createdAt": "2025-05-11T14:12:15.193Z",
"updatedAt": "2026-05-02T08:36:47.317Z"
}