example-data.com

cars / #1

2017 Hyundai Santa Fe

Hyundai

USD45060.00

automatic · gas · 160265 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/1"
)
car = res.json()
{
  "id": 1,
  "make": "Hyundai",
  "model": "Santa Fe",
  "year": 2017,
  "trim": "Limited",
  "vin": "D0ZR08F8571HZFGPL",
  "color": "Brown",
  "mileage": 160265,
  "price": 45060,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Cypress",
  "region": "Oregon",
  "countryAlpha2": "KE",
  "sellerUserId": 176,
  "isSold": false,
  "createdAt": "2025-09-20T23:32:17.701Z",
  "updatedAt": "2025-10-21T08:31:42.231Z"
}
Draftbit