2019 Honda Odyssey
Honda
USD270.00
automatic · gas · 52856 mi · Blue
cars / #46
Honda
USD270.00
automatic · gas · 52856 mi · Blue
curl -sS \
"https://example-data.com/api/v1/cars/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/46"
);
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/46"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/46"
)
car = res.json() {
"id": 46,
"make": "Honda",
"model": "Odyssey",
"year": 2019,
"trim": "LX",
"vin": "E7R4JWV1DVG9P86JZ",
"color": "Blue",
"mileage": 52856,
"price": 270,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "rent",
"city": "Murazikchester",
"region": "West Virginia",
"countryAlpha2": "PH",
"sellerUserId": 15,
"isSold": false,
"createdAt": "2024-07-13T21:33:54.357Z",
"updatedAt": "2025-09-16T13:46:53.161Z"
}