2016 Honda Odyssey
Honda
USD50780.00
automatic · gas · 172219 mi · Gray
Overview
cars / #69
Honda
USD50780.00
automatic · gas · 172219 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/69" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/69" ); 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/69"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/69"
)
car = res.json() Response
{
"id": 69,
"make": "Honda",
"model": "Odyssey",
"year": 2016,
"trim": "EX",
"vin": "61U06UF1AM22MLMVF",
"color": "Gray",
"mileage": 172219,
"price": 50780,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Darrellberg",
"region": "Wyoming",
"countryAlpha2": "NZ",
"sellerUserId": 51,
"isSold": false,
"createdAt": "2024-09-22T12:56:30.840Z",
"updatedAt": "2025-04-12T19:38:58.773Z"
}