2020 Audi A6
Audi
USD50340.00
automatic · hybrid · 63987 mi · Black
cars / #110
Audi
USD50340.00
automatic · hybrid · 63987 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/110"
);
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/110"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/110"
)
car = res.json() {
"id": 110,
"make": "Audi",
"model": "A6",
"year": 2020,
"trim": "LX",
"vin": "CJ28SKF4GCFES02FP",
"color": "Black",
"mileage": 63987,
"price": 50340,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "van",
"listingType": "sale",
"city": "East Nyasiachester",
"region": "Iowa",
"countryAlpha2": "IN",
"sellerUserId": 131,
"isSold": true,
"createdAt": "2025-08-28T10:19:08.291Z",
"updatedAt": "2026-02-20T19:38:14.127Z"
}