example-data.com

cars / #127

2016 Honda Odyssey

Honda

USD29180.00

automatic · gas · 172952 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/127"
)
car = res.json()
{
  "id": 127,
  "make": "Honda",
  "model": "Odyssey",
  "year": 2016,
  "trim": null,
  "vin": "X7UDJG12R3067GVL9",
  "color": "White",
  "mileage": 172952,
  "price": 29180,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Adamworth",
  "region": "Texas",
  "countryAlpha2": "DE",
  "sellerUserId": 220,
  "isSold": false,
  "createdAt": "2026-01-23T15:36:29.507Z",
  "updatedAt": "2026-04-12T02:58:05.389Z"
}
Draftbit