2013 Hyundai Elantra
Hyundai
USD110090.00
automatic · diesel · 17049 mi · Red
Overview
cars / #56
Hyundai
USD110090.00
automatic · diesel · 17049 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/56" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/56" ); 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/56"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/56"
)
car = res.json() Response
{
"id": 56,
"make": "Hyundai",
"model": "Elantra",
"year": 2013,
"trim": "Platinum",
"vin": "V2G7V0121EZ9GY4V1",
"color": "Red",
"mileage": 17049,
"price": 110090,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "suv",
"listingType": "sale",
"city": "Fort Thora",
"region": "Kentucky",
"countryAlpha2": "AR",
"sellerUserId": 156,
"isSold": false,
"createdAt": "2025-01-29T17:11:53.729Z",
"updatedAt": "2025-02-14T08:31:51.449Z"
}