2017 Nissan Rogue
Nissan
USD41640.00
automatic · hybrid · 79386 mi · Blue
cars / #36
Nissan
USD41640.00
automatic · hybrid · 79386 mi · Blue
curl -sS \
"https://example-data.com/api/v1/cars/36" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/cars/36"
);
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/36"
);
const car = (await res.json()) as Car;import requests
res = requests.get(
"https://example-data.com/api/v1/cars/36"
)
car = res.json() {
"id": 36,
"make": "Nissan",
"model": "Rogue",
"year": 2017,
"trim": null,
"vin": "NU2UNF9FRUYY7Y1EE",
"color": "Blue",
"mileage": 79386,
"price": 41640,
"currency": "USD",
"transmission": "automatic",
"fuelType": "hybrid",
"bodyType": "sedan",
"listingType": "sale",
"city": "Fort Juvenalton",
"region": "Louisiana",
"countryAlpha2": "KE",
"sellerUserId": 47,
"isSold": true,
"createdAt": "2025-02-27T19:29:58.783Z",
"updatedAt": "2025-06-02T17:08:29.295Z"
}