API Documentation

Read-only JSON endpoints for the Smarter Web Company community. Power dashboards, Excel/Power Query integrations, and custom automations. No authentication required for public endpoints.

Base URL
https://api.thesmarterdashboard.com
Format
JSON requests/responses, UTF-8
Authentication
None required for public endpoints
Rate Limits
Fair use policy; subject to change

Public Endpoints

GET /public-api/symbols

Returns a list of distinct symbols (tickers) available in the system.

Request
GET https://api.thesmarterdashboard.com/public-api/symbols
Response (200 OK)
[
  {
    "symbol": "AQSE_SWC"
  },
  {
    "symbol": "USOTC_QB"
  }
]
GET /public-api/trades

Fetch trade data for a specific symbol, optionally filtered by date. Returns newest trades first by default.

symbol REQUIRED
The ticker symbol (e.g., AQSE_SWC, USOTC_QB)
date OPTIONAL
Trade date in YYYY-MM-DD format (e.g., 2025-10-26)
limit OPTIONAL
Maximum number of results (1-2000, default: 1000)
order OPTIONAL
Sort order: desc (newest first) or asc (oldest first). Default: desc
Request Example
GET https://api.thesmarterdashboard.com/public-api/trades?symbol=AQSE_SWC&date=2025-10-26&limit=100&order=desc
Response (200 OK)
[
  {
    "id": 123456,
    "symbol": "AQSE_SWC",
    "trade_date": "2025-10-26",
    "api_time": "2025-10-26T14:30:45.123456+00:00",
    "num": 1001,
    "exch": "AQSE",
    "price": 59.0,
    "size": 1000,
    "type": "T",
    "time": "14:30:45",
    "atm_eligible": true,
    "mnav": 0.99,
    "btc_per_share": 0.00000567
  }
]