2021 Nissan Altima
Nissan
USD85110.00
automatic · diesel · 50803 mi · Yellow
Overview
cars / #147
Nissan
USD85110.00
automatic · diesel · 50803 mi · Yellow
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/147" ); 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/147"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/147"
)
car = res.json() Response
{
"id": 147,
"make": "Nissan",
"model": "Altima",
"year": 2021,
"trim": "SE",
"vin": "C5NM5RG2TD3168TMB",
"color": "Yellow",
"mileage": 50803,
"price": 85110,
"currency": "USD",
"transmission": "automatic",
"fuelType": "diesel",
"bodyType": "truck",
"listingType": "sale",
"city": "Adelafurt",
"region": "Illinois",
"countryAlpha2": "SA",
"sellerUserId": 93,
"isSold": false,
"createdAt": "2025-02-28T03:59:19.376Z",
"updatedAt": "2025-06-23T21:00:37.779Z"
}