example-data.com

cars / #56

2013 Hyundai Elantra

Hyundai

USD110090.00

automatic · diesel · 17049 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/56"
)
car = res.json()
{
  "id": 56,
  "make": "Hyundai",
  "model": "Elantra",
  "year": 2013,
  "trim": "Platinum",
  "vin": "V2G7V0121EZ9GY4V1",
  "color": "Red",
  "mileage": 17049,
  "price": 110090,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "diesel",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Fort Thora",
  "region": "Kentucky",
  "countryAlpha2": "AR",
  "sellerUserId": 156,
  "isSold": false,
  "createdAt": "2025-01-29T17:11:53.729Z",
  "updatedAt": "2025-02-14T08:31:51.449Z"
}
Draftbit