example-data.com

cars / #22

2024 Toyota Tacoma

Toyota

USD69600.00

manual · gas · 1959 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/22"
)
car = res.json()
{
  "id": 22,
  "make": "Toyota",
  "model": "Tacoma",
  "year": 2024,
  "trim": "LX",
  "vin": "NZVC5XJ8CKK7337D8",
  "color": "Beige",
  "mileage": 1959,
  "price": 69600,
  "currency": "USD",
  "transmission": "manual",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Ashleyview",
  "region": "Massachusetts",
  "countryAlpha2": "GB",
  "sellerUserId": 10,
  "isSold": false,
  "createdAt": "2025-05-27T04:57:33.624Z",
  "updatedAt": "2026-05-17T07:55:11.132Z"
}
Draftbit