2024 Audi Q7
Audi
USD50020.00
automatic · gas · 12268 mi · Silver
Overview
cars / #28
Audi
USD50020.00
automatic · gas · 12268 mi · Silver
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/28" ); 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/28"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/28"
)
car = res.json() Response
{
"id": 28,
"make": "Audi",
"model": "Q7",
"year": 2024,
"trim": "SE",
"vin": "C6PWAJ2K07B04UBWS",
"color": "Silver",
"mileage": 12268,
"price": 50020,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Waukegan",
"region": "Arizona",
"countryAlpha2": "CN",
"sellerUserId": 229,
"isSold": false,
"createdAt": "2025-01-03T11:05:31.803Z",
"updatedAt": "2025-06-15T07:08:05.153Z"
}