2013 Honda Odyssey
Honda
USD4580.00
cvt · hybrid · 208743 mi · Gray
cars / #47
Honda
USD4580.00
cvt · hybrid · 208743 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/47"
);
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/47"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/47"
)
car = res.json() {
"id": 47,
"make": "Honda",
"model": "Odyssey",
"year": 2013,
"trim": "Premium",
"vin": "6HJN9AG1U3R31RHL4",
"color": "Gray",
"mileage": 208743,
"price": 4580,
"currency": "USD",
"transmission": "cvt",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "Saginaw",
"region": "Georgia",
"countryAlpha2": "JP",
"sellerUserId": 50,
"isSold": false,
"createdAt": "2025-04-26T11:55:02.616Z",
"updatedAt": "2025-06-27T03:55:41.236Z"
}