example-data.com

cars / #140

2020 Toyota Tacoma

Toyota

USD290.00

automatic · gas · 10866 mi · Green

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/140" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/140"
);
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/140"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/140"
)
car = res.json()
{
  "id": 140,
  "make": "Toyota",
  "model": "Tacoma",
  "year": 2020,
  "trim": null,
  "vin": "WSUZ6A3SDYKNR1TXE",
  "color": "Green",
  "mileage": 10866,
  "price": 290,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "hatchback",
  "listingType": "rent",
  "city": "Mitchellfurt",
  "region": "Colorado",
  "countryAlpha2": "GR",
  "sellerUserId": 154,
  "isSold": false,
  "createdAt": "2025-09-01T19:59:31.698Z",
  "updatedAt": "2026-01-03T07:54:58.719Z"
}
Draftbit