2018 Hyundai Tucson
Hyundai
USD48240.00
automatic · gas · 145122 mi · Brown
Overview
cars / #48
Hyundai
USD48240.00
automatic · gas · 145122 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/48" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/48" ); 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/48"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/48"
)
car = res.json() Response
{
"id": 48,
"make": "Hyundai",
"model": "Tucson",
"year": 2018,
"trim": "EX",
"vin": "1HXMS5Y9F22FMLGGH",
"color": "Brown",
"mileage": 145122,
"price": 48240,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Titusville",
"region": "South Dakota",
"countryAlpha2": "PT",
"sellerUserId": 7,
"isSold": false,
"createdAt": "2025-01-27T19:42:50.953Z",
"updatedAt": "2026-04-19T14:36:36.225Z"
}