example-data.com

cars / #50

2020 Honda Pilot

Honda

USD35230.00

automatic · gas · 14320 mi · Green

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/50"
)
car = res.json()
{
  "id": 50,
  "make": "Honda",
  "model": "Pilot",
  "year": 2020,
  "trim": "EX",
  "vin": "WFB874SR6HF2NEU5F",
  "color": "Green",
  "mileage": 14320,
  "price": 35230,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Port Keagan",
  "region": "Kansas",
  "countryAlpha2": "NG",
  "sellerUserId": 157,
  "isSold": false,
  "createdAt": "2024-07-26T02:33:25.275Z",
  "updatedAt": "2025-12-25T02:47:02.818Z"
}
Draftbit