example-data.com

cars / #148

2017 Audi A6

Audi

USD107040.00

cvt · gas · 15816 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/148"
)
car = res.json()
{
  "id": 148,
  "make": "Audi",
  "model": "A6",
  "year": 2017,
  "trim": "SE",
  "vin": "AZ0MUC9LWBHDKU52H",
  "color": "White",
  "mileage": 15816,
  "price": 107040,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "New Barton",
  "region": "Wyoming",
  "countryAlpha2": "CL",
  "sellerUserId": 198,
  "isSold": false,
  "createdAt": "2025-04-14T02:09:36.577Z",
  "updatedAt": "2025-07-25T02:14:14.553Z"
}
Draftbit