2022 Toyota Tacoma
Toyota
USD89270.00
automatic · gas · 32114 mi · Silver
Overview
cars / #2
Toyota
USD89270.00
automatic · gas · 32114 mi · Silver
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/2" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/2" ); 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/2"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/2"
)
car = res.json() Response
{
"id": 2,
"make": "Toyota",
"model": "Tacoma",
"year": 2022,
"trim": "Sport",
"vin": "1J2LH7NEV4PEFZ8J9",
"color": "Silver",
"mileage": 32114,
"price": 89270,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "sale",
"city": "West Alexandra",
"region": "Nebraska",
"countryAlpha2": "BR",
"sellerUserId": 208,
"isSold": false,
"createdAt": "2025-12-25T09:23:48.580Z",
"updatedAt": "2026-01-21T22:32:14.957Z"
}