example-data.com

cars / #109

2024 Tesla Model Y

Tesla

USD95150.00

automatic · hybrid · 40051 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/109"
)
car = res.json()
{
  "id": 109,
  "make": "Tesla",
  "model": "Model Y",
  "year": 2024,
  "trim": "Premium",
  "vin": "GF5GVPNXD3FZXUKDR",
  "color": "Blue",
  "mileage": 40051,
  "price": 95150,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "convertible",
  "listingType": "sale",
  "city": "Lake Amelia",
  "region": "Nebraska",
  "countryAlpha2": "GR",
  "sellerUserId": 171,
  "isSold": false,
  "createdAt": "2024-11-18T15:11:40.559Z",
  "updatedAt": "2025-01-30T13:46:44.112Z"
}
Draftbit