2011 Honda Ridgeline
Honda
USD250.00
automatic · gas · 256716 mi · Gray
Overview
cars / #14
Honda
USD250.00
automatic · gas · 256716 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/14" ); 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/14"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/14"
)
car = res.json() Response
{
"id": 14,
"make": "Honda",
"model": "Ridgeline",
"year": 2011,
"trim": "Premium",
"vin": "1EH5AUT7PU46K9LW7",
"color": "Gray",
"mileage": 256716,
"price": 250,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "rent",
"city": "Schinnerstad",
"region": "South Carolina",
"countryAlpha2": "KR",
"sellerUserId": 25,
"isSold": false,
"createdAt": "2025-05-11T22:09:08.595Z",
"updatedAt": "2025-07-19T12:53:26.914Z"
}