2013 Nissan Pathfinder
Nissan
USD65380.00
automatic · electric · 59524 mi · Gray
cars / #26
Nissan
USD65380.00
automatic · electric · 59524 mi · Gray
curl -sS \
"https://example-data.com/api/v1/cars/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/26"
);
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/26"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/26"
)
car = res.json() {
"id": 26,
"make": "Nissan",
"model": "Pathfinder",
"year": 2013,
"trim": "EX",
"vin": "SS3N2D3W6EWFANF7A",
"color": "Gray",
"mileage": 59524,
"price": 65380,
"currency": "USD",
"transmission": "automatic",
"fuelType": "electric",
"bodyType": "truck",
"listingType": "sale",
"city": "New Kelvin",
"region": "Iowa",
"countryAlpha2": "JP",
"sellerUserId": 203,
"isSold": false,
"createdAt": "2026-02-18T07:36:39.605Z",
"updatedAt": "2026-04-18T05:42:46.036Z"
}