PHASE 1 OPEN — $10K CHALLENGE

API-first prop trading
for algo traders.

Point your Binance-compatible bot at api.alfax.trade. No UI-based evaluation — your strategy trades a funded account the same way it does in backtests.

Start a challengeRead the docs
ccxt (drop-in)python
import ccxt

ex = ccxt.binanceusdm({
    "apiKey": "YOUR_KEY",
    "secret": "YOUR_SECRET",
    "urls": {
        "api": {
            "fapiPublic":    "https://api.alfax.trade/fapi",
            "fapiPrivate":   "https://api.alfax.trade/fapi",
            "fapiPrivateV2": "https://api.alfax.trade/fapi",
        }
    },
})

# Your existing strategy works unchanged.
balance = ex.fetch_balance()
ex.create_order("BTC/USDT:USDT", "limit", "buy", 0.001, 60_000)
alfax SDKpython
from alfax import Client

c = Client(api_key="K", api_secret="S")
c.new_order(
    symbol="BTCUSDT",
    side="BUY",
    type="MARKET",
    quantity="0.001",
)

WHY ALFAX

Binance-compatible

All paths, headers, HMAC auth and WebSocket stream formats match Binance Futures USDT-M byte-for-byte.

Real-time risk engine

Daily drawdown, overall drawdown and profit targets enforced in-process — zero tolerance for late liquidations.

Bot-native onboarding

No forms. Generate an API key, point your bot at our base URL, start the evaluation. One config change.

80% payout split

Pass both challenge stages and trade a funded account. 8000 bps of every profitable withdrawal goes to you.

Ready to connect your bot?

Generate an API key in 30 seconds. No KYC for the evaluation phase.

Start a challenge →