example-data.com
Menu
Browse docs and collections

Overview

cars / #187

2018 Nissan Rogue

Nissan

USD93820.00

automatic · gas · 34925 mi · Yellow

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/cars/187"
);
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/187"
);
const car = (await res.json()) as Car;

Python example

import requests

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

Response

{
  "id": 187,
  "make": "Nissan",
  "model": "Rogue",
  "year": 2018,
  "trim": "EX",
  "vin": "9B5KCNV31XAYN2L6K",
  "color": "Yellow",
  "mileage": 34925,
  "price": 93820,
  "currency": "USD",
  "transmission": "automatic",
  "fuelType": "gas",
  "bodyType": "sedan",
  "listingType": "sale",
  "city": "Lemkehaven",
  "region": "Tennessee",
  "countryAlpha2": "IL",
  "sellerUserId": 43,
  "isSold": false,
  "createdAt": "2024-07-05T06:31:28.179Z",
  "updatedAt": "2025-06-09T15:18:06.720Z"
}