example-data.com

cars / #117

2017 Audi Q5

Audi

USD89010.00

automatic · gas · 147577 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/117"
)
car = res.json()
{
  "id": 117,
  "make": "Audi",
  "model": "Q5",
  "year": 2017,
  "trim": null,
  "vin": "D792SXAP1R6WS6SBZ",
  "color": "White",
  "mileage": 147577,
  "price": 89010,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "Shanellestead",
  "region": "California",
  "countryAlpha2": "SG",
  "sellerUserId": 202,
  "isSold": false,
  "createdAt": "2025-09-10T15:20:28.138Z",
  "updatedAt": "2025-09-27T23:28:42.340Z"
}
Draftbit