example-data.com

cars / #199

2022 Nissan Rogue

Nissan

USD95390.00

automatic · gas · 4918 mi · Red

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/199"
)
car = res.json()
{
  "id": 199,
  "make": "Nissan",
  "model": "Rogue",
  "year": 2022,
  "trim": "Limited",
  "vin": "H5G9GHAUGAJ0Y1R3L",
  "color": "Red",
  "mileage": 4918,
  "price": 95390,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "South Troyton",
  "region": "Florida",
  "countryAlpha2": "CH",
  "sellerUserId": 115,
  "isSold": false,
  "createdAt": "2026-05-14T05:30:49.162Z",
  "updatedAt": "2026-05-17T09:42:09.646Z"
}
Draftbit