2016 Honda Ridgeline
Honda
USD73450.00
cvt · gas · 139723 mi · Green
Overview
cars / #159
Honda
USD73450.00
cvt · gas · 139723 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/159" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/159" ); 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/159"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/159"
)
car = res.json() Response
{
"id": 159,
"make": "Honda",
"model": "Ridgeline",
"year": 2016,
"trim": "Touring",
"vin": "H65RFSN135VNK4UG2",
"color": "Green",
"mileage": 139723,
"price": 73450,
"currency": "USD",
"transmission": "cvt",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Port Bufordstead",
"region": "Arkansas",
"countryAlpha2": "CH",
"sellerUserId": 16,
"isSold": false,
"createdAt": "2025-08-16T21:13:37.062Z",
"updatedAt": "2025-09-15T15:46:48.354Z"
}