2010 Nissan Sentra
Nissan
USD109010.00
automatic · gas · 160205 mi · Red
Overview
cars / #82
Nissan
USD109010.00
automatic · gas · 160205 mi · Red
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/82" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/82" ); 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/82"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/82"
)
car = res.json() Response
{
"id": 82,
"make": "Nissan",
"model": "Sentra",
"year": 2010,
"trim": "Premium",
"vin": "USYV7TKUTAUDT9KKA",
"color": "Red",
"mileage": 160205,
"price": 109010,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "West Aliaport",
"region": "Wisconsin",
"countryAlpha2": "PE",
"sellerUserId": 38,
"isSold": false,
"createdAt": "2025-09-18T14:53:00.873Z",
"updatedAt": "2025-12-09T14:38:05.600Z"
}