2019 Nissan Murano
Nissan
USD13410.00
automatic · hybrid · 44221 mi · Brown
cars / #24
Nissan
USD13410.00
automatic · hybrid · 44221 mi · Brown
curl -sS \
"https://example-data.com/api/v1/cars/24" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/24"
);
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/24"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/24"
)
car = res.json() {
"id": 24,
"make": "Nissan",
"model": "Murano",
"year": 2019,
"trim": "Premium",
"vin": "B4HWM33BD1D974ZAZ",
"color": "Brown",
"mileage": 44221,
"price": 13410,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "hatchback",
"listingType": "sale",
"city": "Vadafurt",
"region": "Iowa",
"countryAlpha2": "NO",
"sellerUserId": 57,
"isSold": false,
"createdAt": "2026-03-14T00:10:09.341Z",
"updatedAt": "2026-03-19T02:28:55.423Z"
}