2013 Tesla Model S
Tesla
USD55780.00
automatic · electric · 110249 mi · Blue
cars / #128
Tesla
USD55780.00
automatic · electric · 110249 mi · Blue
curl -sS \
"https://example-data.com/api/v1/cars/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/128"
);
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/128"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/128"
)
car = res.json() {
"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"
}