2013 Hyundai Ioniq 5
Hyundai
USD49690.00
automatic · hybrid · 206993 mi · Red
Overview
cars / #188
Hyundai
USD49690.00
automatic · hybrid · 206993 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/188" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/188" ); 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/188"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/188"
)
car = res.json() Response
{
"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"
}