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