2013 Tesla Model S
Tesla
USD55780.00
automatic · electric · 110249 mi · Blue
Overview
cars / #128
Tesla
USD55780.00
automatic · electric · 110249 mi · Blue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/128" ); 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/128"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/128"
)
car = res.json() Response
{
"id": 128,
"make": "Tesla",
"model": "Model S",
"year": 2013,
"trim": "LX",
"vin": "016UKGS0YJ6524PMF",
"color": "Blue",
"mileage": 110249,
"price": 55780,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "coupe",
"listingType": "sale",
"city": "Abshirehaven",
"region": "Oregon",
"countryAlpha2": "DE",
"sellerUserId": 209,
"isSold": false,
"createdAt": "2026-02-06T06:33:53.822Z",
"updatedAt": "2026-04-24T02:48:16.349Z"
}