2011 Honda Odyssey
Honda
USD20510.00
automatic · gas · 26979 mi · Red
cars / #31
Honda
USD20510.00
automatic · gas · 26979 mi · Red
curl -sS \
"https://example-data.com/api/v1/cars/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/31"
);
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/31"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/31"
)
car = res.json() {
"id": 31,
"make": "Honda",
"model": "Odyssey",
"year": 2011,
"trim": "LX",
"vin": "TM145UNDSDNSSNZS7",
"color": "Red",
"mileage": 26979,
"price": 20510,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "convertible",
"listingType": "sale",
"city": "North Eugenia",
"region": "Washington",
"countryAlpha2": "JP",
"sellerUserId": 167,
"isSold": false,
"createdAt": "2024-08-14T16:50:46.906Z",
"updatedAt": "2025-06-10T10:50:15.675Z"
}