2021 Audi e-tron
Audi
USD29520.00
automatic · gas · 58311 mi · Green
cars / #80
Audi
USD29520.00
automatic · gas · 58311 mi · Green
curl -sS \
"https://example-data.com/api/v1/cars/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/80"
);
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/80"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/80"
)
car = res.json() {
"id": 80,
"make": "Audi",
"model": "e-tron",
"year": 2021,
"trim": null,
"vin": "VDTPE6E609W5UUDJ6",
"color": "Green",
"mileage": 58311,
"price": 29520,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "Arden-Arcade",
"region": "Alaska",
"countryAlpha2": "SA",
"sellerUserId": 139,
"isSold": false,
"createdAt": "2026-04-10T03:37:32.841Z",
"updatedAt": "2026-05-19T14:23:20.579Z"
}