example-data.com
Menu
Browse docs and collections

Overview

cars / #24

2019 Nissan Murano

Nissan

USD13410.00

automatic · hybrid · 44221 mi · Brown

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/cars/24" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/24"
);
const car = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/cars.d.ts https://example-data.com/types/cars.d.ts
import type { Car } from "./types/cars";

const res = await fetch(
  "https://example-data.com/api/v1/cars/24"
);
const car = (await res.json()) as Car;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/cars/24"
)
car = res.json()

Response

{
  "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"
}