2024 Toyota Tacoma
Toyota
USD69600.00
manual · gas · 1959 mi · Beige
Overview
cars / #22
Toyota
USD69600.00
manual · gas · 1959 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/22" ); 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/22"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/22"
)
car = res.json() Response
{
"id": 22,
"make": "Toyota",
"model": "Tacoma",
"year": 2024,
"trim": "LX",
"vin": "NZVC5XJ8CKK7337D8",
"color": "Beige",
"mileage": 1959,
"price": 69600,
"currency": "USD",
"transmission": "manual",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "Ashleyview",
"region": "Massachusetts",
"countryAlpha2": "GB",
"sellerUserId": 10,
"isSold": false,
"createdAt": "2025-05-27T04:57:33.624Z",
"updatedAt": "2026-05-17T07:55:11.132Z"
}