example-data.com

cars / #4

2010 Hyundai Kona

Hyundai

USD18850.00

automatic · gas · 213148 mi · Yellow

Component variants

Related

Referenced by

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

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