example-data.com

cars / #194

2011 Tesla Model Y

Tesla

USD108390.00

automatic · gas · 203357 mi · Beige

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/194"
)
car = res.json()
{
  "id": 194,
  "make": "Tesla",
  "model": "Model Y",
  "year": 2011,
  "trim": null,
  "vin": "PJ6LK94K6S857TF8H",
  "color": "Beige",
  "mileage": 203357,
  "price": 108390,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "San Luis Obispo",
  "region": "Iowa",
  "countryAlpha2": "PK",
  "sellerUserId": 31,
  "isSold": false,
  "createdAt": "2026-02-26T17:30:22.109Z",
  "updatedAt": "2026-05-10T16:30:15.764Z"
}
Draftbit