example-data.com

cars / #186

2020 Audi Q5

Audi

USD72360.00

automatic · gas · 47306 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/186"
)
car = res.json()
{
  "id": 186,
  "make": "Audi",
  "model": "Q5",
  "year": 2020,
  "trim": "EX",
  "vin": "8J1YMSTY1VLCG4TWF",
  "color": "Blue",
  "mileage": 47306,
  "price": 72360,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Yazminport",
  "region": "Oklahoma",
  "countryAlpha2": "TR",
  "sellerUserId": 53,
  "isSold": false,
  "createdAt": "2025-09-10T12:47:08.415Z",
  "updatedAt": "2026-05-15T10:42:50.141Z"
}
Draftbit