example-data.com

cars / #13

2022 Audi e-tron

Audi

USD15750.00

automatic · hybrid · 73442 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/13"
)
car = res.json()
{
  "id": 13,
  "make": "Audi",
  "model": "e-tron",
  "year": 2022,
  "trim": "Limited",
  "vin": "8XGXY2P7B3ELB6A5N",
  "color": "Beige",
  "mileage": 73442,
  "price": 15750,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Davie",
  "region": "Texas",
  "countryAlpha2": "TR",
  "sellerUserId": 96,
  "isSold": true,
  "createdAt": "2025-11-12T05:57:00.332Z",
  "updatedAt": "2025-11-23T22:57:41.334Z"
}
Draftbit