example-data.com

cars / #73

2016 Toyota Tundra

Toyota

USD109940.00

automatic · gas · 70975 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/73"
)
car = res.json()
{
  "id": 73,
  "make": "Toyota",
  "model": "Tundra",
  "year": 2016,
  "trim": null,
  "vin": "AGDZRAKGN0MABWKEE",
  "color": "Brown",
  "mileage": 70975,
  "price": 109940,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "North Kavonfort",
  "region": "Connecticut",
  "countryAlpha2": "PK",
  "sellerUserId": 81,
  "isSold": false,
  "createdAt": "2025-01-21T17:47:24.913Z",
  "updatedAt": "2025-06-02T01:51:14.929Z"
}
Draftbit