2025 Hyundai Santa Fe
Hyundai
USD69410.00
automatic · hybrid · 20395 mi · Brown
Overview
cars / #200
Hyundai
USD69410.00
automatic · hybrid · 20395 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/200" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/200" ); 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/200"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/200"
)
car = res.json() Response
{
"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"
}