2025 Hyundai Santa Fe
Hyundai
USD69410.00
automatic · hybrid · 20395 mi · Brown
cars / #200
Hyundai
USD69410.00
automatic · hybrid · 20395 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/200"
);
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/200"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/200"
)
car = res.json() {
"id": 200,
"make": "Hyundai",
"model": "Santa Fe",
"year": 2025,
"trim": null,
"vin": "1JGLBSBABNY7T191C",
"color": "Brown",
"mileage": 20395,
"price": 69410,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "hatchback",
"listingType": "sale",
"city": "North Alejandrin",
"region": "Connecticut",
"countryAlpha2": "JP",
"sellerUserId": 29,
"isSold": true,
"createdAt": "2026-04-06T01:59:42.307Z",
"updatedAt": "2026-04-26T10:36:27.901Z"
}