example-data.com

cars / #183

2014 Nissan Rogue

Nissan

USD99300.00

manual · electric · 30040 mi · Silver

Component variants

Related

Referenced by

curl -sS \
  "https://example-data.com/api/v1/cars/183" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/cars/183"
);
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/183"
);
const car = (await res.json()) as Car;
import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/183"
)
car = res.json()
{
  "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"
}
Draftbit