example-data.com

cars / #78

2021 Audi Q7

Audi

USD390.00

automatic · electric · 9258 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/78"
)
car = res.json()
{
  "id": 78,
  "make": "Audi",
  "model": "Q7",
  "year": 2021,
  "trim": "Platinum",
  "vin": "U7R33JZUCZTZ7BMAN",
  "color": "Brown",
  "mileage": 9258,
  "price": 390,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "wagon",
  "listingType": "rent",
  "city": "East Rico",
  "region": "Washington",
  "countryAlpha2": "CN",
  "sellerUserId": 47,
  "isSold": false,
  "createdAt": "2024-09-17T16:23:33.957Z",
  "updatedAt": "2025-04-18T23:17:45.170Z"
}
Draftbit