example-data.com

cars / #3

2017 Tesla Cybertruck

Tesla

USD65050.00

automatic · gas · 98280 mi · Green

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/cars/3"
)
car = res.json()
{
  "id": 3,
  "make": "Tesla",
  "model": "Cybertruck",
  "year": 2017,
  "trim": "Premium",
  "vin": "UHWR6X8CHWUH2A20F",
  "color": "Green",
  "mileage": 98280,
  "price": 65050,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Port Rubye",
  "region": "Massachusetts",
  "countryAlpha2": "FJ",
  "sellerUserId": 148,
  "isSold": false,
  "createdAt": "2025-05-09T10:45:13.418Z",
  "updatedAt": "2026-04-21T20:41:46.417Z"
}
Draftbit