2013 Honda Odyssey
Honda
USD4580.00
cvt · hybrid · 208743 mi · Gray
Overview
cars / #47
Honda
USD4580.00
cvt · hybrid · 208743 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/47" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/47" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/47"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/47"
)
car = res.json() Response
{
"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"
}