example-data.com

cars / #60

2014 Nissan Murano

Nissan

USD118740.00

automatic · gas · 165337 mi · Silver

Component variants

Related

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/cars/60"
)
car = res.json()
{
  "id": 60,
  "make": "Nissan",
  "model": "Murano",
  "year": 2014,
  "trim": "Limited",
  "vin": "EKGC9H11YCUSFNU4C",
  "color": "Silver",
  "mileage": 165337,
  "price": 118740,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Rochester Hills",
  "region": "Arkansas",
  "countryAlpha2": "DE",
  "sellerUserId": 64,
  "isSold": true,
  "createdAt": "2025-12-08T21:28:35.651Z",
  "updatedAt": "2025-12-10T16:37:29.211Z"
}
Draftbit