2020 Tesla Model Y
Tesla
USD102570.00
manual · hybrid · 57888 mi · Black
cars / #45
Tesla
USD102570.00
manual · hybrid · 57888 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/45"
);
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/45"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/45"
)
car = res.json() {
"id": 45,
"make": "Tesla",
"model": "Model Y",
"year": 2020,
"trim": null,
"vin": "T0T1F48MULNZ744GY",
"color": "Black",
"mileage": 57888,
"price": 102570,
"currency": "USD",
"transmission": "manual",
"fuelType": "hybrid",
"bodyType": "truck",
"listingType": "sale",
"city": "New Isacton",
"region": "New Hampshire",
"countryAlpha2": "VN",
"sellerUserId": 109,
"isSold": false,
"createdAt": "2026-04-19T05:13:19.173Z",
"updatedAt": "2026-05-10T00:42:54.888Z"
}