2011 Hyundai Elantra
Hyundai
USD66940.00
automatic · gas · 201740 mi · Gray
cars / #169
Hyundai
USD66940.00
automatic · gas · 201740 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/169" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/169"
);
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/169"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/169"
)
car = res.json() {
"id": 169,
"make": "Hyundai",
"model": "Elantra",
"year": 2011,
"trim": "LX",
"vin": "E8PZ6K5WVCDAYZDC1",
"color": "Gray",
"mileage": 201740,
"price": 66940,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Christstad",
"region": "Rhode Island",
"countryAlpha2": "ES",
"sellerUserId": 18,
"isSold": false,
"createdAt": "2025-10-29T04:04:00.259Z",
"updatedAt": "2026-05-03T17:19:44.404Z"
}