2019 Audi A6
Audi
USD13740.00
automatic · gas · 84593 mi · Gray
cars / #161
Audi
USD13740.00
automatic · gas · 84593 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/161"
);
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/161"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/161"
)
car = res.json() {
"id": 161,
"make": "Audi",
"model": "A6",
"year": 2019,
"trim": "SE",
"vin": "G7MTHLU4VHHCTZZ56",
"color": "Gray",
"mileage": 84593,
"price": 13740,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Orland Park",
"region": "Montana",
"countryAlpha2": "GB",
"sellerUserId": 115,
"isSold": true,
"createdAt": "2025-04-10T23:27:06.560Z",
"updatedAt": "2025-08-04T09:17:56.051Z"
}