example-data.com

cars / #144

2013 Nissan Rogue

Nissan

USD49640.00

automatic · gas · 150936 mi · Blue

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/144"
)
car = res.json()
{
  "id": 144,
  "make": "Nissan",
  "model": "Rogue",
  "year": 2013,
  "trim": "LX",
  "vin": "M64W8J93UZGP11N9D",
  "color": "Blue",
  "mileage": 150936,
  "price": 49640,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "suv",
  "listingType": "sale",
  "city": "Kleinside",
  "region": "Rhode Island",
  "countryAlpha2": "SE",
  "sellerUserId": 61,
  "isSold": false,
  "createdAt": "2025-08-18T02:11:36.998Z",
  "updatedAt": "2026-01-04T04:19:35.941Z"
}
Draftbit