2015 Hyundai Kona
Hyundai
USD32670.00
automatic · gas · 149406 mi · Silver
cars / #67
Hyundai
USD32670.00
automatic · gas · 149406 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/67"
);
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/67"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/67"
)
car = res.json() {
"id": 67,
"make": "Hyundai",
"model": "Kona",
"year": 2015,
"trim": "Touring",
"vin": "3WHL82WWKFSJRY5JP",
"color": "Silver",
"mileage": 149406,
"price": 32670,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "New Irmaberg",
"region": "Arkansas",
"countryAlpha2": "JP",
"sellerUserId": 211,
"isSold": false,
"createdAt": "2025-05-14T23:42:13.876Z",
"updatedAt": "2026-04-16T19:22:45.228Z"
}