2011 Honda Ridgeline
Honda
USD250.00
automatic · gas · 256716 mi · Gray
cars / #14
Honda
USD250.00
automatic · gas · 256716 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/14"
);
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/14"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/14"
)
car = res.json() {
"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"
}