2012 Hyundai Elantra
Hyundai
USD14620.00
automatic · gas · 212873 mi · Beige
cars / #158
Hyundai
USD14620.00
automatic · gas · 212873 mi · Beige
curl -sS \
"https://example-data.com/api/v1/cars/158" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/158"
);
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/158"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/158"
)
car = res.json() {
"id": 158,
"make": "Hyundai",
"model": "Elantra",
"year": 2012,
"trim": "EX",
"vin": "0M2VTVSEG2AF7EBG6",
"color": "Beige",
"mileage": 212873,
"price": 14620,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Ramirobury",
"region": "Ohio",
"countryAlpha2": "VN",
"sellerUserId": 6,
"isSold": false,
"createdAt": "2025-11-07T21:24:19.879Z",
"updatedAt": "2025-12-15T02:01:32.773Z"
}