example-data.com

cars / #5

2021 Toyota Corolla

Toyota

USD320.00

automatic · gas · 46590 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/5"
)
car = res.json()
{
  "id": 5,
  "make": "Toyota",
  "model": "Corolla",
  "year": 2021,
  "trim": "Sport",
  "vin": "1MW089VG36RZW9A9A",
  "color": "Blue",
  "mileage": 46590,
  "price": 320,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "van",
  "listingType": "rent",
  "city": "Allancester",
  "region": "West Virginia",
  "countryAlpha2": "VN",
  "sellerUserId": 129,
  "isSold": false,
  "createdAt": "2025-10-03T02:00:51.609Z",
  "updatedAt": "2026-01-20T03:19:12.277Z"
}
Draftbit