2021 Audi RS6
Audi
USD10660.00
cvt · hybrid · 22442 mi · Brown
cars / #90
Audi
USD10660.00
cvt · hybrid · 22442 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/90"
);
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/90"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/90"
)
car = res.json() {
"id": 90,
"make": "Audi",
"model": "RS6",
"year": 2021,
"trim": null,
"vin": "9V9A6T3T1RFF4TTGF",
"color": "Brown",
"mileage": 22442,
"price": 10660,
"currency": "USD",
"transmission": "cvt",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "Funkstad",
"region": "Massachusetts",
"countryAlpha2": "AR",
"sellerUserId": 173,
"isSold": true,
"createdAt": "2026-01-01T21:10:20.236Z",
"updatedAt": "2026-05-18T04:10:14.841Z"
}