example-data.com

cars / #85

2020 Hyundai Elantra

Hyundai

USD34010.00

automatic · gas · 93246 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/85"
)
car = res.json()
{
  "id": 85,
  "make": "Hyundai",
  "model": "Elantra",
  "year": 2020,
  "trim": "LX",
  "vin": "LY5VXJJF5CKB2J7P1",
  "color": "Beige",
  "mileage": 93246,
  "price": 34010,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "Pensacola",
  "region": "New York",
  "countryAlpha2": "VN",
  "sellerUserId": 91,
  "isSold": false,
  "createdAt": "2025-05-05T06:17:19.593Z",
  "updatedAt": "2025-07-09T12:56:47.497Z"
}
Draftbit