2012 Audi S5
Audi
USD74270.00
automatic · hybrid · 254480 mi · Blue
Overview
cars / #139
Audi
USD74270.00
automatic · hybrid · 254480 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/139" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/139" ); 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/139"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/139"
)
car = res.json() Response
{
"id": 139,
"make": "Audi",
"model": "S5",
"year": 2012,
"trim": "SE",
"vin": "64AFKA38SA3VNVFW5",
"color": "Blue",
"mileage": 254480,
"price": 74270,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "truck",
"listingType": "sale",
"city": "D'angeloboro",
"region": "Kentucky",
"countryAlpha2": "IL",
"sellerUserId": 40,
"isSold": true,
"createdAt": "2026-03-27T07:34:06.510Z",
"updatedAt": "2026-05-01T14:17:41.312Z"
}