example-data.com

cars / #149

2012 Honda HR-V

Honda

USD109640.00

automatic · hybrid · 139958 mi · White

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/149"
)
car = res.json()
{
  "id": 149,
  "make": "Honda",
  "model": "HR-V",
  "year": 2012,
  "trim": "SE",
  "vin": "07PZYD11424AAEVD5",
  "color": "White",
  "mileage": 139958,
  "price": 109640,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "coupe",
  "listingType": "sale",
  "city": "West Adolphuschester",
  "region": "Virginia",
  "countryAlpha2": "AU",
  "sellerUserId": 231,
  "isSold": true,
  "createdAt": "2026-03-06T12:35:09.310Z",
  "updatedAt": "2026-04-02T18:33:57.855Z"
}
Draftbit