example-data.com
Menu
Browse docs and collections

Overview

cars / #158

2012 Hyundai Elantra

Hyundai

USD14620.00

automatic · gas · 212873 mi · Beige

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 158,
  "make": "Hyundai",
  "model": "Elantra",
  "year": 2012,
  "trim": "EX",
  "vin": "0M2VTVSEG2AF7EBG6",
  "color": "Beige",
  "mileage": 212873,
  "price": 14620,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Ramirobury",
  "region": "Ohio",
  "countryAlpha2": "VN",
  "sellerUserId": 6,
  "isSold": false,
  "createdAt": "2025-11-07T21:24:19.879Z",
  "updatedAt": "2025-12-15T02:01:32.773Z"
}