example-data.com

cars / #92

2012 Audi Q7

Audi

USD92730.00

manual · diesel · 175118 mi · White

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/92" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/92"
);
const car = await res.json();
import type { Car } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars/92"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/92"
)
car = res.json()
{
  "id": 92,
  "make": "Audi",
  "model": "Q7",
  "year": 2012,
  "trim": null,
  "vin": "T12VHJT4ZYF1X9220",
  "color": "White",
  "mileage": 175118,
  "price": 92730,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "diesel",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Karleeton",
  "region": "Delaware",
  "countryAlpha2": "TR",
  "sellerUserId": 233,
  "isSold": false,
  "createdAt": "2025-08-19T00:12:44.509Z",
  "updatedAt": "2026-01-24T16:02:31.701Z"
}
Draftbit