example-data.com

cars / #195

2015 Audi A6

Audi

USD8720.00

automatic · gas · 98859 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/195"
)
car = res.json()
{
  "id": 195,
  "make": "Audi",
  "model": "A6",
  "year": 2015,
  "trim": null,
  "vin": "9WC8R1NMZ7HH5TR1X",
  "color": "White",
  "mileage": 98859,
  "price": 8720,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Port Albinstead",
  "region": "Maryland",
  "countryAlpha2": "NZ",
  "sellerUserId": 114,
  "isSold": false,
  "createdAt": "2025-09-13T15:24:51.257Z",
  "updatedAt": "2025-10-02T14:06:05.074Z"
}
Draftbit