2020 Tesla Model Y
Tesla
USD102570.00
manual · hybrid · 57888 mi · Black
Overview
cars / #45
Tesla
USD102570.00
manual · hybrid · 57888 mi · Black
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/45" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/45" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/45"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/45"
)
car = res.json() Response
{
"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"
}