example-data.com

cars / #28

2024 Audi Q7

Audi

USD50020.00

automatic · gas · 12268 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/28"
)
car = res.json()
{
  "id": 28,
  "make": "Audi",
  "model": "Q7",
  "year": 2024,
  "trim": "SE",
  "vin": "C6PWAJ2K07B04UBWS",
  "color": "Silver",
  "mileage": 12268,
  "price": 50020,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Waukegan",
  "region": "Arizona",
  "countryAlpha2": "CN",
  "sellerUserId": 229,
  "isSold": false,
  "createdAt": "2025-01-03T11:05:31.803Z",
  "updatedAt": "2025-06-15T07:08:05.153Z"
}
Draftbit