example-data.com

cars / #113

2025 Hyundai Kona

Hyundai

USD93810.00

automatic · gas · 7995 mi · Gray

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/113" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/113"
);
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/113"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/113"
)
car = res.json()
{
  "id": 113,
  "make": "Hyundai",
  "model": "Kona",
  "year": 2025,
  "trim": "Touring",
  "vin": "5S9Y43BX1EZKLYGA5",
  "color": "Gray",
  "mileage": 7995,
  "price": 93810,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Wiegandcester",
  "region": "Rhode Island",
  "countryAlpha2": "MA",
  "sellerUserId": 113,
  "isSold": true,
  "createdAt": "2025-05-06T10:37:35.640Z",
  "updatedAt": "2025-11-17T13:25:26.182Z"
}
Draftbit