2013 Hyundai Ioniq 5
Hyundai
USD49690.00
automatic · hybrid · 206993 mi · Red
cars / #188
Hyundai
USD49690.00
automatic · hybrid · 206993 mi · Red
curl -sS \
"https://example-data.com/api/v1/cars/188" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/188"
);
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/188"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/188"
)
car = res.json() {
"id": 188,
"make": "Hyundai",
"model": "Ioniq 5",
"year": 2013,
"trim": "Premium",
"vin": "1MX4UMXLPTGG9CRBZ",
"color": "Red",
"mileage": 206993,
"price": 49690,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "sedan",
"listingType": "sale",
"city": "Fort Jettie",
"region": "Oregon",
"countryAlpha2": "MY",
"sellerUserId": 176,
"isSold": false,
"createdAt": "2025-01-15T05:17:02.766Z",
"updatedAt": "2026-02-09T00:44:09.715Z"
}