2010 Nissan Sentra
Nissan
USD109010.00
automatic · gas · 160205 mi · Red
cars / #82
Nissan
USD109010.00
automatic · gas · 160205 mi · Red
curl -sS \
"https://example-data.com/api/v1/cars/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/82"
);
const car = await res.json();import type { Car } from "https://example-data.com/types/cars.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cars/82"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/82"
)
car = res.json() {
"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"
}