example-data.com

cars / #18

2012 Honda Pilot

Honda

USD56540.00

automatic · gas · 251400 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/18"
)
car = res.json()
{
  "id": 18,
  "make": "Honda",
  "model": "Pilot",
  "year": 2012,
  "trim": "Premium",
  "vin": "U2SCXZJHCKPTPZYAJ",
  "color": "Brown",
  "mileage": 251400,
  "price": 56540,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "Terryland",
  "region": "Maine",
  "countryAlpha2": "CA",
  "sellerUserId": 167,
  "isSold": false,
  "createdAt": "2025-05-16T07:00:56.863Z",
  "updatedAt": "2026-04-01T16:38:27.747Z"
}
Draftbit