2022 Tesla Cybertruck
Tesla
USD200.00
automatic · gas · 18618 mi · Green
cars / #52
Tesla
USD200.00
automatic · gas · 18618 mi · Green
curl -sS \
"https://example-data.com/api/v1/cars/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/52"
);
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/52"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/52"
)
car = res.json() {
"id": 52,
"make": "Tesla",
"model": "Cybertruck",
"year": 2022,
"trim": "Premium",
"vin": "L7R4PKTPSK6WRFH9P",
"color": "Green",
"mileage": 18618,
"price": 200,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "truck",
"listingType": "rent",
"city": "New Bridget",
"region": "South Dakota",
"countryAlpha2": "NG",
"sellerUserId": 206,
"isSold": false,
"createdAt": "2025-05-25T15:10:57.406Z",
"updatedAt": "2026-01-30T14:23:56.779Z"
}