2018 Audi RS6
Audi
USD48670.00
manual · diesel · 81563 mi · Green
cars / #178
Audi
USD48670.00
manual · diesel · 81563 mi · Green
curl -sS \
"https://example-data.com/api/v1/cars/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/178"
);
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/178"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/178"
)
car = res.json() {
"id": 178,
"make": "Audi",
"model": "RS6",
"year": 2018,
"trim": "Limited",
"vin": "MJAV26P4KWV8FZ9Y6",
"color": "Green",
"mileage": 81563,
"price": 48670,
"currency": "USD",
"transmission": "manual",
"fuelType": "diesel",
"bodyType": "suv",
"listingType": "sale",
"city": "Heidiville",
"region": "Michigan",
"countryAlpha2": "KR",
"sellerUserId": 70,
"isSold": false,
"createdAt": "2025-02-14T16:54:52.307Z",
"updatedAt": "2026-04-08T06:25:02.017Z"
}