example-data.com

cars / #87

2010 Audi Q7

Audi

USD83070.00

automatic · hybrid · 249187 mi · Green

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/87"
)
car = res.json()
{
  "id": 87,
  "make": "Audi",
  "model": "Q7",
  "year": 2010,
  "trim": "Touring",
  "vin": "VDVEAAFK15DPV9WXA",
  "color": "Green",
  "mileage": 249187,
  "price": 83070,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Lake Dereckcester",
  "region": "Texas",
  "countryAlpha2": "ET",
  "sellerUserId": 11,
  "isSold": true,
  "createdAt": "2025-01-12T16:14:53.443Z",
  "updatedAt": "2025-12-16T21:07:43.153Z"
}
Draftbit