2012 Honda Pilot
Honda
USD56540.00
automatic · gas · 251400 mi · Brown
Overview
cars / #18
Honda
USD56540.00
automatic · gas · 251400 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/18" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/18" ); 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/18"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/18"
)
car = res.json() Response
{
"id": 18,
"make": "Honda",
"model": "Pilot",
"year": 2012,
"trim": "Premium",
"vin": "U2SCXZJHCKPTPZYAJ",
"color": "Brown",
"mileage": 251400,
"price": 56540,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Terryland",
"region": "Maine",
"countryAlpha2": "CA",
"sellerUserId": 167,
"isSold": false,
"createdAt": "2025-05-16T07:00:56.863Z",
"updatedAt": "2026-04-01T16:38:27.747Z"
}