2020 Hyundai Elantra
Hyundai
USD34010.00
automatic · gas · 93246 mi · Beige
Overview
cars / #85
Hyundai
USD34010.00
automatic · gas · 93246 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/85" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/85" ); 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/85"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/85"
)
car = res.json() Response
{
"id": 85,
"make": "Hyundai",
"model": "Elantra",
"year": 2020,
"trim": "LX",
"vin": "LY5VXJJF5CKB2J7P1",
"color": "Beige",
"mileage": 93246,
"price": 34010,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Pensacola",
"region": "New York",
"countryAlpha2": "VN",
"sellerUserId": 91,
"isSold": false,
"createdAt": "2025-05-05T06:17:19.593Z",
"updatedAt": "2025-07-09T12:56:47.497Z"
}