example-data.com

cars / #104

2022 Toyota Highlander

Toyota

USD67180.00

cvt · gas · 41380 mi · Brown

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/104"
)
car = res.json()
{
  "id": 104,
  "make": "Toyota",
  "model": "Highlander",
  "year": 2022,
  "trim": null,
  "vin": "FLNUM1CXL1FX4Y8ZK",
  "color": "Brown",
  "mileage": 41380,
  "price": 67180,
  "currency": "USD",
  "transmission": "cvt",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Schowalterburgh",
  "region": "Maine",
  "countryAlpha2": "VN",
  "sellerUserId": 157,
  "isSold": false,
  "createdAt": "2025-08-26T10:11:41.573Z",
  "updatedAt": "2026-04-08T04:25:27.632Z"
}
Draftbit