2026 Toyota Tacoma
Toyota
USD92800.00
manual · hybrid · 2567 mi · Gray
cars / #63
Toyota
USD92800.00
manual · hybrid · 2567 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/63"
);
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/63"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/63"
)
car = res.json() {
"id": 63,
"make": "Toyota",
"model": "Tacoma",
"year": 2026,
"trim": null,
"vin": "C7KTWRYZWJZXV93DP",
"color": "Gray",
"mileage": 2567,
"price": 92800,
"currency": "USD",
"transmission": "manual",
"fuelType": "hybrid",
"bodyType": "suv",
"listingType": "sale",
"city": "McDermottport",
"region": "Wyoming",
"countryAlpha2": "KE",
"sellerUserId": 45,
"isSold": true,
"createdAt": "2026-04-01T20:27:32.392Z",
"updatedAt": "2026-04-04T17:34:46.016Z"
}