2015 Toyota Tundra
Toyota
USD250.00
automatic · electric · 70342 mi · Black
cars / #97
Toyota
USD250.00
automatic · electric · 70342 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/97"
);
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/97"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/97"
)
car = res.json() {
"id": 97,
"make": "Toyota",
"model": "Tundra",
"year": 2015,
"trim": null,
"vin": "4964BEKM0NS32VGZW",
"color": "Black",
"mileage": 70342,
"price": 250,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "truck",
"listingType": "rent",
"city": "Emeraldshire",
"region": "Indiana",
"countryAlpha2": "TR",
"sellerUserId": 183,
"isSold": false,
"createdAt": "2025-03-05T13:03:51.044Z",
"updatedAt": "2026-05-18T22:07:02.302Z"
}