2026 Honda HR-V
Honda
USD360.00
automatic · gas · 1431 mi · Black
Overview
cars / #126
Honda
USD360.00
automatic · gas · 1431 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/126" ); 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/126"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/126"
)
car = res.json() Response
{
"id": 126,
"make": "Honda",
"model": "HR-V",
"year": 2026,
"trim": "EX",
"vin": "K3EM2JNE02ZXZXKTS",
"color": "Black",
"mileage": 1431,
"price": 360,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "van",
"listingType": "rent",
"city": "Lake Kirstenboro",
"region": "Virginia",
"countryAlpha2": "FJ",
"sellerUserId": 143,
"isSold": false,
"createdAt": "2025-07-10T02:35:36.944Z",
"updatedAt": "2025-11-15T19:42:23.718Z"
}