example-data.com

cars / #88

2016 Audi S5

Audi

USD47750.00

automatic · gas · 88628 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/88"
)
car = res.json()
{
  "id": 88,
  "make": "Audi",
  "model": "S5",
  "year": 2016,
  "trim": "Touring",
  "vin": "95R33Y378F7065RUW",
  "color": "White",
  "mileage": 88628,
  "price": 47750,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "South Marques",
  "region": "Connecticut",
  "countryAlpha2": "AR",
  "sellerUserId": 84,
  "isSold": false,
  "createdAt": "2025-10-11T06:55:49.663Z",
  "updatedAt": "2026-01-22T06:13:36.130Z"
}
Draftbit