2026 Audi e-tron
Audi
USD120.00
cvt · gas · 368 mi · Black
Overview
cars / #130
Audi
USD120.00
cvt · gas · 368 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/130" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/130" ); 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/130"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/130"
)
car = res.json() Response
{
"id": 130,
"make": "Audi",
"model": "e-tron",
"year": 2026,
"trim": null,
"vin": "0427MG9UBPXKDTXSB",
"color": "Black",
"mileage": 368,
"price": 120,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "rent",
"city": "Port Nathan",
"region": "Wyoming",
"countryAlpha2": "GB",
"sellerUserId": 123,
"isSold": false,
"createdAt": "2025-06-29T17:06:22.733Z",
"updatedAt": "2026-03-24T23:31:56.163Z"
}