2021 Audi e-tron
Audi
USD29520.00
automatic · gas · 58311 mi · Green
Overview
cars / #80
Audi
USD29520.00
automatic · gas · 58311 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/80" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/80"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/80"
)
car = res.json() Response
{
"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"
}