2021 Hyundai Elantra
Hyundai
USD76390.00
automatic · gas · 25883 mi · White
cars / #190
Hyundai
USD76390.00
automatic · gas · 25883 mi · White
curl -sS \
"https://example-data.com/api/v1/cars/190" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/190"
);
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/190"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/190"
)
car = res.json() {
"id": 190,
"make": "Hyundai",
"model": "Elantra",
"year": 2021,
"trim": "Premium",
"vin": "01UU4MVYSU2AXMMNN",
"color": "White",
"mileage": 25883,
"price": 76390,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Newark",
"region": "Missouri",
"countryAlpha2": "CL",
"sellerUserId": 10,
"isSold": false,
"createdAt": "2025-03-14T05:05:00.133Z",
"updatedAt": "2025-12-09T08:43:37.207Z"
}