2011 Tesla Model X
Tesla
USD46690.00
automatic · gas · 197136 mi · Yellow
cars / #129
Tesla
USD46690.00
automatic · gas · 197136 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/129"
);
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/129"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/129"
)
car = res.json() {
"id": 129,
"make": "Tesla",
"model": "Model X",
"year": 2011,
"trim": null,
"vin": "38AT7N4C9E9N2YWZ9",
"color": "Yellow",
"mileage": 197136,
"price": 46690,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "New Braunfels",
"region": "Michigan",
"countryAlpha2": "KR",
"sellerUserId": 61,
"isSold": true,
"createdAt": "2025-02-28T21:13:13.562Z",
"updatedAt": "2025-10-14T18:23:58.043Z"
}