2022 Tesla Model Y
Tesla
USD66710.00
automatic · gas · 35673 mi · Silver
cars / #75
Tesla
USD66710.00
automatic · gas · 35673 mi · Silver
curl -sS \
"https://example-data.com/api/v1/cars/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/75"
);
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/75"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/75"
)
car = res.json() {
"id": 75,
"make": "Tesla",
"model": "Model Y",
"year": 2022,
"trim": "Platinum",
"vin": "4G03LVZ18LV9HN2FG",
"color": "Silver",
"mileage": 35673,
"price": 66710,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "hatchback",
"listingType": "sale",
"city": "East Estell",
"region": "Pennsylvania",
"countryAlpha2": "ZA",
"sellerUserId": 244,
"isSold": true,
"createdAt": "2024-08-15T15:46:01.697Z",
"updatedAt": "2025-01-27T11:33:20.031Z"
}