2010 Hyundai Kona
Hyundai
USD18850.00
automatic · gas · 213148 mi · Yellow
Overview
cars / #4
Hyundai
USD18850.00
automatic · gas · 213148 mi · Yellow
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/4" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/4" ); 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/4"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/4"
)
car = res.json() Response
{
"id": 4,
"make": "Hyundai",
"model": "Kona",
"year": 2010,
"trim": null,
"vin": "2PAMVZCF6TLR594YP",
"color": "Yellow",
"mileage": 213148,
"price": 18850,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Marlenecester",
"region": "Kentucky",
"countryAlpha2": "AE",
"sellerUserId": 97,
"isSold": false,
"createdAt": "2025-01-13T23:13:12.640Z",
"updatedAt": "2025-08-08T04:25:43.254Z"
}