2022 Audi RS6
Audi
USD210.00
manual · hybrid · 41926 mi · Beige
cars / #72
Audi
USD210.00
manual · hybrid · 41926 mi · Beige
2022 Audi RS6
Audi
USD210.00
curl -sS \
"https://example-data.com/api/v1/cars/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/72"
);
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/72"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/72"
)
car = res.json() {
"id": 72,
"make": "Audi",
"model": "RS6",
"year": 2022,
"trim": "LX",
"vin": "BH2RERBSUT2G9V3ST",
"color": "Beige",
"mileage": 41926,
"price": 210,
"currency": "USD",
"transmission": "manual",
"fuelType": "hybrid",
"bodyType": "truck",
"listingType": "rent",
"city": "Newtonburgh",
"region": "Indiana",
"countryAlpha2": "NL",
"sellerUserId": 225,
"isSold": false,
"createdAt": "2025-11-09T20:49:46.956Z",
"updatedAt": "2025-12-20T03:56:37.894Z"
}