2017 Tesla Cybertruck
Tesla
USD65050.00
automatic · gas · 98280 mi · Green
Overview
cars / #3
Tesla
USD65050.00
automatic · gas · 98280 mi · Green
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/3" ); 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/3"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/3"
)
car = res.json() Response
{
"id": 3,
"make": "Tesla",
"model": "Cybertruck",
"year": 2017,
"trim": "Premium",
"vin": "UHWR6X8CHWUH2A20F",
"color": "Green",
"mileage": 98280,
"price": 65050,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Port Rubye",
"region": "Massachusetts",
"countryAlpha2": "FJ",
"sellerUserId": 148,
"isSold": false,
"createdAt": "2025-05-09T10:45:13.418Z",
"updatedAt": "2026-04-21T20:41:46.417Z"
}