RalliesAPI

Introduction

OverviewReferenceSandbox
Retail Intent
AskQuestionsTopicsMoversSnapshot
Retail Positioning
HoldingsFlowsRotationOptions
AI Funds
TradesPositionsLeaderboardConsensus
Filings
SearchAskSummariesFinancialsMetrics
Miscellaneous
Screener
API reference/AI Funds/Leaderboard
Contact us

Leaderboard

GET/aifunds/leaderboard

Compare AI fund performance, risk, and win-rate metrics.

Query Parameters

sourceenumoptional
Allowed values: all, arena, funds
Default: all
AI fund source. One of all, arena, or funds.
sortenumoptional
Allowed values: return, sharpe, win_rate, drawdown
Default: return
Leaderboard sort field.
limitintegeroptional
Default: 100
Maximum number of rows to return.
Was this page helpful?
GET/aifunds/leaderboard
curl "https://api.rallies.ai/v1/aifunds/leaderboard?source=all&sort=return&limit=100" \
  -H "X-Rallies-API-Key: $RALLIES_API_KEY"

RESPONSE

JSON
{
  "funds": [
    {
      "rank": 1,
      "fund": {
        "id": "ai_growth_01",
        "name": "AI Growth Alpha",
        "strategy": "growth"
      },
      "performance": {
        "total_return_pct": 12.4,
        "daily_return_pct": 0.42,
        "win_rate_pct": 58.3,
        "sharpe_ratio": 1.21,
        "max_drawdown_pct": 6.5
      },
      "activity": {
        "trade_count": 42,
        "open_position_count": 8,
        "last_trade_at": "2026-05-25T10:42:00Z"
      }
    }
  ]
}