2017 Audi A6
Audi
USD107040.00
cvt · gas · 15816 mi · White
Overview
cars / #148
Audi
USD107040.00
cvt · gas · 15816 mi · White
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/148" ); 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/148"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/148"
)
car = res.json() Response
{
"id": 148,
"make": "Audi",
"model": "A6",
"year": 2017,
"trim": "SE",
"vin": "AZ0MUC9LWBHDKU52H",
"color": "White",
"mileage": 15816,
"price": 107040,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "New Barton",
"region": "Wyoming",
"countryAlpha2": "CL",
"sellerUserId": 198,
"isSold": false,
"createdAt": "2025-04-14T02:09:36.577Z",
"updatedAt": "2025-07-25T02:14:14.553Z"
}