example-data.com

cars / #154

2026 Hyundai Palisade

Hyundai

USD11600.00

manual · gas · 3324 mi · Green

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/154"
)
car = res.json()
{
  "id": 154,
  "make": "Hyundai",
  "model": "Palisade",
  "year": 2026,
  "trim": "SE",
  "vin": "WUNL18AXTB7P7KT08",
  "color": "Green",
  "mileage": 3324,
  "price": 11600,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Hammesview",
  "region": "Minnesota",
  "countryAlpha2": "CN",
  "sellerUserId": 118,
  "isSold": false,
  "createdAt": "2025-04-04T20:44:51.251Z",
  "updatedAt": "2026-03-21T21:04:45.418Z"
}
Draftbit