example-data.com

cars / #179

2019 Honda Accord

Honda

USD110640.00

automatic · plugin_hybrid · 69388 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/179"
)
car = res.json()
{
  "id": 179,
  "make": "Honda",
  "model": "Accord",
  "year": 2019,
  "trim": "Premium",
  "vin": "7ZK3F1P57XCJP1J7X",
  "color": "Silver",
  "mileage": 69388,
  "price": 110640,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "plugin_hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "West Isidroborough",
  "region": "Connecticut",
  "countryAlpha2": "KE",
  "sellerUserId": 167,
  "isSold": false,
  "createdAt": "2026-04-07T15:18:00.013Z",
  "updatedAt": "2026-05-03T12:39:56.639Z"
}
Draftbit