example-data.com
Menu
Browse docs and collections

Overview

cars / #67

2015 Hyundai Kona

Hyundai

USD32670.00

automatic · gas · 149406 mi · Silver

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/67" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/67"
);
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/67"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/67"
)
car = res.json()

Response

{
  "id": 67,
  "make": "Hyundai",
  "model": "Kona",
  "year": 2015,
  "trim": "Touring",
  "vin": "3WHL82WWKFSJRY5JP",
  "color": "Silver",
  "mileage": 149406,
  "price": 32670,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "New Irmaberg",
  "region": "Arkansas",
  "countryAlpha2": "JP",
  "sellerUserId": 211,
  "isSold": false,
  "createdAt": "2025-05-14T23:42:13.876Z",
  "updatedAt": "2026-04-16T19:22:45.228Z"
}