2022 Tesla Model X
Tesla
USD54230.00
automatic · electric · 54764 mi · Red
Overview
cars / #58
Tesla
USD54230.00
automatic · electric · 54764 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/58" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/58" ); 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/58"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/58"
)
car = res.json() Response
{
"id": 58,
"make": "Tesla",
"model": "Model X",
"year": 2022,
"trim": "Limited",
"vin": "ZARFM9AH26HHGNG6Y",
"color": "Red",
"mileage": 54764,
"price": 54230,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "van",
"listingType": "sale",
"city": "Lake Oscarfort",
"region": "California",
"countryAlpha2": "TH",
"sellerUserId": 71,
"isSold": false,
"createdAt": "2025-07-18T19:00:43.804Z",
"updatedAt": "2025-09-05T04:25:10.801Z"
}