2024 Tesla Model Y
Tesla
USD95150.00
automatic · hybrid · 40051 mi · Blue
Overview
cars / #109
Tesla
USD95150.00
automatic · hybrid · 40051 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/109" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/109" ); 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/109"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/109"
)
car = res.json() Response
{
"id": 109,
"make": "Tesla",
"model": "Model Y",
"year": 2024,
"trim": "Premium",
"vin": "GF5GVPNXD3FZXUKDR",
"color": "Blue",
"mileage": 40051,
"price": 95150,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "convertible",
"listingType": "sale",
"city": "Lake Amelia",
"region": "Nebraska",
"countryAlpha2": "GR",
"sellerUserId": 171,
"isSold": false,
"createdAt": "2024-11-18T15:11:40.559Z",
"updatedAt": "2025-01-30T13:46:44.112Z"
}