example-data.com

cars / #130

2026 Audi e-tron

Audi

USD120.00

cvt · gas · 368 mi · Black

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/130"
)
car = res.json()
{
  "id": 130,
  "make": "Audi",
  "model": "e-tron",
  "year": 2026,
  "trim": null,
  "vin": "0427MG9UBPXKDTXSB",
  "color": "Black",
  "mileage": 368,
  "price": 120,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "rent",
  "city": "Port Nathan",
  "region": "Wyoming",
  "countryAlpha2": "GB",
  "sellerUserId": 123,
  "isSold": false,
  "createdAt": "2025-06-29T17:06:22.733Z",
  "updatedAt": "2026-03-24T23:31:56.163Z"
}
Draftbit