example-data.com

cars / #159

2016 Honda Ridgeline

Honda

USD73450.00

cvt · gas · 139723 mi · Green

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/159" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/159"
);
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/159"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/159"
)
car = res.json()
{
  "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"
}
Draftbit