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.
https://api.thesmarterdashboard.comReturns a list of distinct symbols (tickers) available in the system.
GET https://api.thesmarterdashboard.com/public-api/symbols
[
{
"symbol": "AQSE_SWC"
},
{
"symbol": "USOTC_QB"
}
]
Fetch trade data for a specific symbol, optionally filtered by date. Returns newest trades first by default.
AQSE_SWC, USOTC_QB)
2025-10-26)
desc (newest first) or asc (oldest first). Default: desc
GET https://api.thesmarterdashboard.com/public-api/trades?symbol=AQSE_SWC&date=2025-10-26&limit=100&order=desc
[
{
"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
}
]