example-data.com

cars / #177

2026 Audi S5

Audi

USD13000.00

automatic · diesel · 3040 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/177"
)
car = res.json()
{
  "id": 177,
  "make": "Audi",
  "model": "S5",
  "year": 2026,
  "trim": "Sport",
  "vin": "XRJ99JJUXBMMX0YE9",
  "color": "Black",
  "mileage": 3040,
  "price": 13000,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "Rosenbaumfield",
  "region": "North Dakota",
  "countryAlpha2": "FJ",
  "sellerUserId": 240,
  "isSold": false,
  "createdAt": "2026-03-05T20:24:15.918Z",
  "updatedAt": "2026-03-24T01:06:49.687Z"
}
Draftbit