example-data.com

cars / #48

2018 Hyundai Tucson

Hyundai

USD48240.00

automatic · gas · 145122 mi · Brown

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/48" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/48"
);
const car = await res.json();
import type { Car } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars/48"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/48"
)
car = res.json()
{
  "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"
}
Draftbit