2026 Audi S5
Audi
USD13000.00
automatic · diesel · 3040 mi · Black
Overview
cars / #177
Audi
USD13000.00
automatic · diesel · 3040 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/177" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/177" ); 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/177"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/177"
)
car = res.json() Response
{
"id": 177,
"make": "Audi",
"model": "S5",
"year": 2026,
"trim": "Sport",
"vin": "XRJ99JJUXBMMX0YE9",
"color": "Black",
"mileage": 3040,
"price": 13000,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "truck",
"listingType": "sale",
"city": "Rosenbaumfield",
"region": "North Dakota",
"countryAlpha2": "FJ",
"sellerUserId": 240,
"isSold": false,
"createdAt": "2026-03-05T20:24:15.918Z",
"updatedAt": "2026-03-24T01:06:49.687Z"
}