2026 Honda HR-V
Honda
USD360.00
automatic · gas · 1431 mi · Black
cars / #126
Honda
USD360.00
automatic · gas · 1431 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/126" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/126"
);
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/126"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/126"
)
car = res.json() {
"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"
}