example-data.com

cars / #62

2016 Audi Q5

Audi

USD67600.00

automatic · gas · 66442 mi · Yellow

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/62" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/62"
);
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/62"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/62"
)
car = res.json()
{
  "id": 62,
  "make": "Audi",
  "model": "Q5",
  "year": 2016,
  "trim": "Touring",
  "vin": "KEGAP19DL137CJBMC",
  "color": "Yellow",
  "mileage": 66442,
  "price": 67600,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Lake Stevefurt",
  "region": "Missouri",
  "countryAlpha2": "PT",
  "sellerUserId": 20,
  "isSold": false,
  "createdAt": "2025-08-30T22:54:54.223Z",
  "updatedAt": "2026-05-21T08:59:10.151Z"
}
Draftbit