2018 Audi RS6
Audi
USD48670.00
manual · diesel · 81563 mi · Green
Overview
cars / #178
Audi
USD48670.00
manual · diesel · 81563 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/178" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/178" ); 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/178"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/178"
)
car = res.json() Response
{
"id": 178,
"make": "Audi",
"model": "RS6",
"year": 2018,
"trim": "Limited",
"vin": "MJAV26P4KWV8FZ9Y6",
"color": "Green",
"mileage": 81563,
"price": 48670,
"currency": "USD",
"transmission": "manual",
"fuelType": "diesel",
"bodyType": "suv",
"listingType": "sale",
"city": "Heidiville",
"region": "Michigan",
"countryAlpha2": "KR",
"sellerUserId": 70,
"isSold": false,
"createdAt": "2025-02-14T16:54:52.307Z",
"updatedAt": "2026-04-08T06:25:02.017Z"
}