example-data.com

cars / #139

2012 Audi S5

Audi

USD74270.00

automatic · hybrid · 254480 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/139"
)
car = res.json()
{
  "id": 139,
  "make": "Audi",
  "model": "S5",
  "year": 2012,
  "trim": "SE",
  "vin": "64AFKA38SA3VNVFW5",
  "color": "Blue",
  "mileage": 254480,
  "price": 74270,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "D'angeloboro",
  "region": "Kentucky",
  "countryAlpha2": "IL",
  "sellerUserId": 40,
  "isSold": true,
  "createdAt": "2026-03-27T07:34:06.510Z",
  "updatedAt": "2026-05-01T14:17:41.312Z"
}
Draftbit