2023 Toyota Tundra
Toyota
USD50280.00
automatic · plugin_hybrid · 56541 mi · Brown
Overview
cars / #68
Toyota
USD50280.00
automatic · plugin_hybrid · 56541 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/68" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/68"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/68"
)
car = res.json() Response
{
"id": 68,
"make": "Toyota",
"model": "Tundra",
"year": 2023,
"trim": null,
"vin": "14XXH0N32ZNHFDSVG",
"color": "Brown",
"mileage": 56541,
"price": 50280,
"currency": "USD",
"transmission": "automatic",
"fuelType": "plugin_hybrid",
"bodyType": "sedan",
"listingType": "sale",
"city": "Roobview",
"region": "Wyoming",
"countryAlpha2": "ES",
"sellerUserId": 62,
"isSold": false,
"createdAt": "2026-01-09T10:12:17.667Z",
"updatedAt": "2026-02-27T14:59:54.215Z"
}