2022 Toyota Tundra
Toyota
USD21470.00
manual · diesel · 66959 mi · Gray
cars / #196
Toyota
USD21470.00
manual · diesel · 66959 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/196" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/196"
);
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/196"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/196"
)
car = res.json() {
"id": 196,
"make": "Toyota",
"model": "Tundra",
"year": 2022,
"trim": null,
"vin": "1SXXLCLT28G0TTNMD",
"color": "Gray",
"mileage": 66959,
"price": 21470,
"currency": "USD",
"transmission": "manual",
"fuelType": "diesel",
"bodyType": "convertible",
"listingType": "sale",
"city": "South Davonchester",
"region": "Georgia",
"countryAlpha2": "BE",
"sellerUserId": 160,
"isSold": false,
"createdAt": "2024-07-25T16:56:33.689Z",
"updatedAt": "2026-04-20T10:49:18.920Z"
}