2022 Tesla Cybertruck
Tesla
USD200.00
automatic · gas · 18618 mi · Green
Overview
cars / #52
Tesla
USD200.00
automatic · gas · 18618 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/52" ); 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/52"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/52"
)
car = res.json() Response
{
"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"
}