2020 Audi A6
Audi
USD50340.00
automatic · hybrid · 63987 mi · Black
Overview
cars / #110
Audi
USD50340.00
automatic · hybrid · 63987 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/110" ); 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/110"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/110"
)
car = res.json() Response
{
"id": 110,
"make": "Audi",
"model": "A6",
"year": 2020,
"trim": "LX",
"vin": "CJ28SKF4GCFES02FP",
"color": "Black",
"mileage": 63987,
"price": 50340,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "van",
"listingType": "sale",
"city": "East Nyasiachester",
"region": "Iowa",
"countryAlpha2": "IN",
"sellerUserId": 131,
"isSold": true,
"createdAt": "2025-08-28T10:19:08.291Z",
"updatedAt": "2026-02-20T19:38:14.127Z"
}