example-data.com

cars / #2

2022 Toyota Tacoma

Toyota

USD89270.00

automatic · gas · 32114 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/2"
)
car = res.json()
{
  "id": 2,
  "make": "Toyota",
  "model": "Tacoma",
  "year": 2022,
  "trim": "Sport",
  "vin": "1J2LH7NEV4PEFZ8J9",
  "color": "Silver",
  "mileage": 32114,
  "price": 89270,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "truck",
  "listingType": "sale",
  "city": "West Alexandra",
  "region": "Nebraska",
  "countryAlpha2": "BR",
  "sellerUserId": 208,
  "isSold": false,
  "createdAt": "2025-12-25T09:23:48.580Z",
  "updatedAt": "2026-01-21T22:32:14.957Z"
}
Draftbit