🚀 Now supporting 50+ markets with sub-2ms execution.Read the case study →
ST
StrongTowerMM
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}")