2011 Hyundai Palisade
Hyundai
USD15280.00
automatic · gas · 145941 mi · Yellow
cars / #95
Hyundai
USD15280.00
automatic · gas · 145941 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/95" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/95"
);
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/95"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/95"
)
car = res.json() {
"id": 95,
"make": "Hyundai",
"model": "Palisade",
"year": 2011,
"trim": "Platinum",
"vin": "2KP8ZBJ768Y4S1RZ9",
"color": "Yellow",
"mileage": 145941,
"price": 15280,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "North Emie",
"region": "Connecticut",
"countryAlpha2": "AU",
"sellerUserId": 77,
"isSold": false,
"createdAt": "2026-01-20T06:31:01.742Z",
"updatedAt": "2026-05-06T20:07:58.038Z"
}