example-data.com

cars / #69

2016 Honda Odyssey

Honda

USD50780.00

automatic · gas · 172219 mi · Gray

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/69"
)
car = res.json()
{
  "id": 69,
  "make": "Honda",
  "model": "Odyssey",
  "year": 2016,
  "trim": "EX",
  "vin": "61U06UF1AM22MLMVF",
  "color": "Gray",
  "mileage": 172219,
  "price": 50780,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Darrellberg",
  "region": "Wyoming",
  "countryAlpha2": "NZ",
  "sellerUserId": 51,
  "isSold": false,
  "createdAt": "2024-09-22T12:56:30.840Z",
  "updatedAt": "2025-04-12T19:38:58.773Z"
}
Draftbit