2026 Honda Ridgeline
Honda
USD42180.00
automatic · hybrid · 1139 mi · Beige
cars / #84
Honda
USD42180.00
automatic · hybrid · 1139 mi · Beige
curl -sS \
"https://example-data.com/api/v1/cars/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/84"
);
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/84"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/84"
)
car = res.json() {
"id": 84,
"make": "Honda",
"model": "Ridgeline",
"year": 2026,
"trim": null,
"vin": "SZP8RV1L1579T68BW",
"color": "Beige",
"mileage": 1139,
"price": 42180,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Jasttown",
"region": "Louisiana",
"countryAlpha2": "IE",
"sellerUserId": 244,
"isSold": true,
"createdAt": "2024-11-12T16:32:29.301Z",
"updatedAt": "2025-03-21T12:06:34.709Z"
}