2026 Nissan Sentra
Nissan
USD74000.00
manual · diesel · 819 mi · Red
Overview
cars / #32
Nissan
USD74000.00
manual · diesel · 819 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/32" ); 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/32"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/32"
)
car = res.json() Response
{
"id": 32,
"make": "Nissan",
"model": "Sentra",
"year": 2026,
"trim": "SE",
"vin": "R1WPMAS09R69H357W",
"color": "Red",
"mileage": 819,
"price": 74000,
"currency": "USD",
"transmission": "manual",
"fuelType": "diesel",
"bodyType": "suv",
"listingType": "sale",
"city": "Kevonton",
"region": "Indiana",
"countryAlpha2": "PL",
"sellerUserId": 78,
"isSold": false,
"createdAt": "2024-09-22T15:34:32.905Z",
"updatedAt": "2025-08-22T15:51:38.994Z"
}