2026 Honda Ridgeline
Honda
USD42180.00
automatic · hybrid · 1139 mi · Beige
Overview
cars / #84
Honda
USD42180.00
automatic · hybrid · 1139 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/84" ); 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/84"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/84"
)
car = res.json() Response
{
"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"
}