2026 Hyundai Palisade
Hyundai
USD11600.00
manual · gas · 3324 mi · Green
Overview
cars / #154
Hyundai
USD11600.00
manual · gas · 3324 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/154" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/154" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/154"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/154"
)
car = res.json() Response
{
"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"
}