2015 Toyota Tundra
Toyota
USD250.00
automatic · electric · 70342 mi · Black
Overview
cars / #97
Toyota
USD250.00
automatic · electric · 70342 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/97" ); 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/97"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/97"
)
car = res.json() Response
{
"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"
}