example-data.com

cars / #58

2022 Tesla Model X

Tesla

USD54230.00

automatic · electric · 54764 mi · Red

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/58"
)
car = res.json()
{
  "id": 58,
  "make": "Tesla",
  "model": "Model X",
  "year": 2022,
  "trim": "Limited",
  "vin": "ZARFM9AH26HHGNG6Y",
  "color": "Red",
  "mileage": 54764,
  "price": 54230,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "electric",
  "bodyType": "van",
  "listingType": "sale",
  "city": "Lake Oscarfort",
  "region": "California",
  "countryAlpha2": "TH",
  "sellerUserId": 71,
  "isSold": false,
  "createdAt": "2025-07-18T19:00:43.804Z",
  "updatedAt": "2025-09-05T04:25:10.801Z"
}
Draftbit