example-data.com

cars / #68

2023 Toyota Tundra

Toyota

USD50280.00

automatic · plugin_hybrid · 56541 mi · Brown

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/68"
)
car = res.json()
{
  "id": 68,
  "make": "Toyota",
  "model": "Tundra",
  "year": 2023,
  "trim": null,
  "vin": "14XXH0N32ZNHFDSVG",
  "color": "Brown",
  "mileage": 56541,
  "price": 50280,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "plugin_hybrid",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Roobview",
  "region": "Wyoming",
  "countryAlpha2": "ES",
  "sellerUserId": 62,
  "isSold": false,
  "createdAt": "2026-01-09T10:12:17.667Z",
  "updatedAt": "2026-02-27T14:59:54.215Z"
}
Draftbit