The QUIMERIA-HYPERION backend exposes a FastAPI server atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/deskiziarecords/QUIMERIA-HYPERION/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:8000. All REST endpoints return JSON. Two persistent WebSocket feeds handle backtest streaming and live Bitget data. Authentication is not required for local operation; exchange API keys are passed in request bodies or set as environment variables.
Base URL
Endpoint index
| Method | Path | Description |
|---|---|---|
POST | /api/load/csv | Load OHLCV bars from pasted CSV text |
POST | /api/load/bitget | Fetch candles from Bitget spot via REST API |
POST | /api/load/oanda | Fetch candles from OANDA via v20 API |
POST | /api/load/sample | Load built-in synthetic AMD cycle data |
POST | /api/config/modules | Enable or disable individual SMK detector modules |
GET | /api/status | Pipeline status: bars loaded, cursor, AMD state, module health |
GET | /api/logs | List available log files with file sizes |
GET | /api/logs/{filename} | Read the last N lines of a named log file |
GET | /api/plugins | Plugin registry status and per-plugin health |
POST | /api/plugins/toggle | Enable or disable plugins by name |
POST | /api/live/start | Start Bitget REST polling live feed |
POST | /api/live/stop | Stop the live feed |
GET | /api/execution/status | AEGIS bridge availability and configuration |
GET | /api/execution/stats | StopLossManager session statistics |
WS | /ws/stream | Bar-by-bar backtest replay with full SMK result |
WS | /ws/live | Live Bitget tick stream processed through SMK |
Authentication
No authentication is enforced by default. Exchange credentials are supplied per-request:- Bitget —
api_keyandapi_secretin thePOST /api/load/bitgetbody, or viaBITGET_API_KEY/BITGET_SECRET/BITGET_PASSPHRASEenvironment variables for the live feed. - OANDA —
tokenandaccount_idin thePOST /api/load/oandabody.
Never commit API keys to source control. Set them as environment variables and reference them from a
.env file that is excluded from version control.Detailed references
Data loading
Load OHLCV data from CSV, Bitget, OANDA, or the built-in sample generator.
System control
Toggle SMK modules, read status, manage plugins, and tail log files.
Execution
AEGIS bridge status, StopLossManager stats, and live feed control.
WebSocket streaming
Backtest replay over WebSocket with per-bar SMK result payloads.