2025 Toyota Tacoma
Toyota
USD22580.00
automatic · gas · 10419 mi · Brown
cars / #197
Toyota
USD22580.00
automatic · gas · 10419 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/197"
);
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/197"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/197"
)
car = res.json() {
"id": 197,
"make": "Toyota",
"model": "Tacoma",
"year": 2025,
"trim": null,
"vin": "2989USLVA3J7271ZZ",
"color": "Brown",
"mileage": 10419,
"price": 22580,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "Vincenzaside",
"region": "Wisconsin",
"countryAlpha2": "CA",
"sellerUserId": 19,
"isSold": false,
"createdAt": "2025-05-24T20:13:02.539Z",
"updatedAt": "2026-02-28T13:05:18.144Z"
}