2014 Nissan Rogue
Nissan
USD99300.00
manual · electric · 30040 mi · Silver
Overview
cars / #183
Nissan
USD99300.00
manual · electric · 30040 mi · Silver
Request
curl example
curl -sS \ "https://example-data.com/api/v1/cars/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/cars/183" ); const car = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";
const res = await fetch(
"https://example-data.com/api/v1/cars/183"
);
const car = (await res.json()) as Car; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/cars/183"
)
car = res.json() Response
{
"id": 183,
"make": "Nissan",
"model": "Rogue",
"year": 2014,
"trim": "LX",
"vin": "SXDBJSL843AH7XZHK",
"color": "Silver",
"mileage": 30040,
"price": 99300,
"currency": "USD",
"transmission": "manual",
"fuelType": "electric",
"bodyType": "sedan",
"listingType": "sale",
"city": "Sheabury",
"region": "Virginia",
"countryAlpha2": "IL",
"sellerUserId": 51,
"isSold": false,
"createdAt": "2025-08-26T23:52:01.554Z",
"updatedAt": "2026-03-29T14:58:08.048Z"
}