2016 Toyota Tundra
Toyota
USD109940.00
automatic · gas · 70975 mi · Brown
Overview
cars / #73
Toyota
USD109940.00
automatic · gas · 70975 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/73" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/73" ); 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/73"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/73"
)
car = res.json() Response
{
"id": 73,
"make": "Toyota",
"model": "Tundra",
"year": 2016,
"trim": null,
"vin": "AGDZRAKGN0MABWKEE",
"color": "Brown",
"mileage": 70975,
"price": 109940,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "North Kavonfort",
"region": "Connecticut",
"countryAlpha2": "PK",
"sellerUserId": 81,
"isSold": false,
"createdAt": "2025-01-21T17:47:24.913Z",
"updatedAt": "2025-06-02T01:51:14.929Z"
}