example-data.com

cars / #24

2019 Nissan Murano

Nissan

USD13410.00

automatic · hybrid · 44221 mi · Brown

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/24"
)
car = res.json()
{
  "id": 24,
  "make": "Nissan",
  "model": "Murano",
  "year": 2019,
  "trim": "Premium",
  "vin": "B4HWM33BD1D974ZAZ",
  "color": "Brown",
  "mileage": 44221,
  "price": 13410,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "hybrid",
  "bodyType": "hatchback",
  "listingType": "sale",
  "city": "Vadafurt",
  "region": "Iowa",
  "countryAlpha2": "NO",
  "sellerUserId": 57,
  "isSold": false,
  "createdAt": "2026-03-14T00:10:09.341Z",
  "updatedAt": "2026-03-19T02:28:55.423Z"
}
Draftbit