2020 Honda Pilot
Honda
USD35230.00
automatic · gas · 14320 mi · Green
Overview
cars / #50
Honda
USD35230.00
automatic · gas · 14320 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/50" ); 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/50"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/50"
)
car = res.json() Response
{
"id": 50,
"make": "Honda",
"model": "Pilot",
"year": 2020,
"trim": "EX",
"vin": "WFB874SR6HF2NEU5F",
"color": "Green",
"mileage": 14320,
"price": 35230,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Port Keagan",
"region": "Kansas",
"countryAlpha2": "NG",
"sellerUserId": 157,
"isSold": false,
"createdAt": "2024-07-26T02:33:25.275Z",
"updatedAt": "2025-12-25T02:47:02.818Z"
}