Documentation
API Reference
Everything you need to integrate with StrongTowerMM — REST APIs, WebSocket feeds, and SDKs.
quickstart.py
from strongtower import Client
client = Client(api_key="your-api-key")
# Get real-time quotes
quotes = client.quotes.stream("SOL/USDC")
# Place a market making order
order = client.orders.create(
pair="SOL/USDC",
side="bid",
price=142.50,
size=100,
strategy="dynamic_spread"
)
# Get AI price prediction
prediction = client.ai.predict(
pair="SOL/USDC",
horizon="1h"
)
print(f"Predicted: {prediction.price}")Getting Started
Market Making API
Quote Streams
WebSocket subscriptions for real-time bid/ask quotes and depth.
Order Management
Place, modify, and cancel orders across supported venues.
Position Tracking
Real-time position, P&L, and inventory management endpoints.
Strategy Config
Configure spread, size, skew, and other strategy parameters.
AI & Analytics API
Prediction Endpoints
Price prediction, volatility forecast, and alpha signal APIs.
Risk Assessment
Portfolio risk metrics, VaR calculations, and stress testing.
Document Intelligence
Upload, process, and query financial documents via AI.
Custom Model Inference
Deploy and call your custom ML models through our API.