example-data.com

cars / #40

2014 Toyota Tacoma

Toyota

USD27310.00

automatic · gas · 141954 mi · Brown

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/40" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/40"
);
const car = await res.json();
import type { Car } from "https://example-data.com/types/cars.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/cars/40"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/40"
)
car = res.json()
{
  "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"
}
Draftbit