2011 Tesla Model Y
Tesla
USD108390.00
automatic · gas · 203357 mi · Beige
Overview
cars / #194
Tesla
USD108390.00
automatic · gas · 203357 mi · Beige
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/194" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/194" ); 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/194"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/194"
)
car = res.json() Response
{
"id": 194,
"make": "Tesla",
"model": "Model Y",
"year": 2011,
"trim": null,
"vin": "PJ6LK94K6S857TF8H",
"color": "Beige",
"mileage": 203357,
"price": 108390,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "suv",
"listingType": "sale",
"city": "San Luis Obispo",
"region": "Iowa",
"countryAlpha2": "PK",
"sellerUserId": 31,
"isSold": false,
"createdAt": "2026-02-26T17:30:22.109Z",
"updatedAt": "2026-05-10T16:30:15.764Z"
}