2025 Toyota Tacoma
Toyota
USD22580.00
automatic · gas · 10419 mi · Brown
Overview
cars / #197
Toyota
USD22580.00
automatic · gas · 10419 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/197" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/197" ); 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/197"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/197"
)
car = res.json() Response
{
"id": 197,
"make": "Toyota",
"model": "Tacoma",
"year": 2025,
"trim": null,
"vin": "2989USLVA3J7271ZZ",
"color": "Brown",
"mileage": 10419,
"price": 22580,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "Vincenzaside",
"region": "Wisconsin",
"countryAlpha2": "CA",
"sellerUserId": 19,
"isSold": false,
"createdAt": "2025-05-24T20:13:02.539Z",
"updatedAt": "2026-02-28T13:05:18.144Z"
}