2018 Tesla Model 3
Tesla
USD26370.00
automatic · gas · 115616 mi · Black
cars / #160
Tesla
USD26370.00
automatic · gas · 115616 mi · Black
curl -sS \
"https://example-data.com/api/v1/cars/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/160"
);
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/160"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/160"
)
car = res.json() {
"id": 160,
"make": "Tesla",
"model": "Model 3",
"year": 2018,
"trim": "Touring",
"vin": "9U3GHAAGT8WLPRVSM",
"color": "Black",
"mileage": 115616,
"price": 26370,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Daughertystead",
"region": "Georgia",
"countryAlpha2": "US",
"sellerUserId": 171,
"isSold": false,
"createdAt": "2025-09-18T20:27:38.574Z",
"updatedAt": "2026-05-05T21:51:55.459Z"
}