2016 Hyundai Elantra
Hyundai
USD61570.00
automatic · diesel · 62391 mi · Silver
cars / #102
Hyundai
USD61570.00
automatic · diesel · 62391 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/102"
);
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/102"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/102"
)
car = res.json() {
"id": 102,
"make": "Hyundai",
"model": "Elantra",
"year": 2016,
"trim": "Platinum",
"vin": "E263DYAYXDMLD7RAP",
"color": "Silver",
"mileage": 62391,
"price": 61570,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "truck",
"listingType": "sale",
"city": "Cortneyton",
"region": "Nebraska",
"countryAlpha2": "VN",
"sellerUserId": 244,
"isSold": false,
"createdAt": "2026-05-07T02:54:08.487Z",
"updatedAt": "2026-05-12T03:28:19.734Z"
}