2014 Toyota Tacoma
Toyota
USD27310.00
automatic · gas · 141954 mi · Brown
Overview
cars / #40
Toyota
USD27310.00
automatic · gas · 141954 mi · Brown
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/40" ); 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/40"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/40"
)
car = res.json() Response
{
"id": 40,
"make": "Toyota",
"model": "Tacoma",
"year": 2014,
"trim": null,
"vin": "APY06K67P9GKZM7KX",
"color": "Brown",
"mileage": 141954,
"price": 27310,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "coupe",
"listingType": "sale",
"city": "Nicolasbury",
"region": "North Dakota",
"countryAlpha2": "TH",
"sellerUserId": 2,
"isSold": false,
"createdAt": "2025-01-25T18:01:56.070Z",
"updatedAt": "2026-02-05T22:23:53.937Z"
}