2018 Honda HR-V
Honda
USD92880.00
automatic · hybrid · 110760 mi · Red
cars / #170
Honda
USD92880.00
automatic · hybrid · 110760 mi · Red
curl -sS \
"https://example-data.com/api/v1/cars/170" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/170"
);
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/170"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/170"
)
car = res.json() {
"id": 170,
"make": "Honda",
"model": "HR-V",
"year": 2018,
"trim": null,
"vin": "G2U5HEMM7U6G5EVZ0",
"color": "Red",
"mileage": 110760,
"price": 92880,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "Wisozkstead",
"region": "Wyoming",
"countryAlpha2": "IE",
"sellerUserId": 133,
"isSold": false,
"createdAt": "2025-03-02T15:43:35.020Z",
"updatedAt": "2025-07-27T16:50:40.038Z"
}