2022 Tesla Cybertruck
Tesla
USD50.00
automatic · gas · 76641 mi · Gray
Overview
cars / #122
Tesla
USD50.00
automatic · gas · 76641 mi · Gray
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/122" ); 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/122"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/122"
)
car = res.json() Response
{
"id": 122,
"make": "Tesla",
"model": "Cybertruck",
"year": 2022,
"trim": null,
"vin": "NWA85NV7GNC5J72G7",
"color": "Gray",
"mileage": 76641,
"price": 50,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "rent",
"city": "North Mitchell",
"region": "Minnesota",
"countryAlpha2": "TH",
"sellerUserId": 58,
"isSold": false,
"createdAt": "2025-03-22T19:20:34.728Z",
"updatedAt": "2025-08-27T09:04:28.804Z"
}