example-data.com

cars / #122

2022 Tesla Cybertruck

Tesla

USD50.00

automatic · gas · 76641 mi · Gray

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/122"
)
car = res.json()
{
  "id": 122,
  "make": "Tesla",
  "model": "Cybertruck",
  "year": 2022,
  "trim": null,
  "vin": "NWA85NV7GNC5J72G7",
  "color": "Gray",
  "mileage": 76641,
  "price": 50,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "rent",
  "city": "North Mitchell",
  "region": "Minnesota",
  "countryAlpha2": "TH",
  "sellerUserId": 58,
  "isSold": false,
  "createdAt": "2025-03-22T19:20:34.728Z",
  "updatedAt": "2025-08-27T09:04:28.804Z"
}
Draftbit