2011 Hyundai Elantra
Hyundai
USD66940.00
automatic · gas · 201740 mi · Gray
Overview
cars / #169
Hyundai
USD66940.00
automatic · gas · 201740 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/169" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/169" ); 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/169"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/169"
)
car = res.json() Response
{
"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"
}