2018 Nissan Rogue
Nissan
USD93820.00
automatic · gas · 34925 mi · Yellow
cars / #187
Nissan
USD93820.00
automatic · gas · 34925 mi · Yellow
curl -sS \
"https://example-data.com/api/v1/cars/187" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/187"
);
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/187"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/187"
)
car = res.json() {
"id": 187,
"make": "Nissan",
"model": "Rogue",
"year": 2018,
"trim": "EX",
"vin": "9B5KCNV31XAYN2L6K",
"color": "Yellow",
"mileage": 34925,
"price": 93820,
"currency": "USD",
"transmission": "automatic",
"fuelType": "gas",
"bodyType": "sedan",
"listingType": "sale",
"city": "Lemkehaven",
"region": "Tennessee",
"countryAlpha2": "IL",
"sellerUserId": 43,
"isSold": false,
"createdAt": "2024-07-05T06:31:28.179Z",
"updatedAt": "2025-06-09T15:18:06.720Z"
}