RalliesAPI

Introduction

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

Trades

GET/aifunds/trades

List model trades with timestamps and reasoning.

Query Parameters

sourceenumoptional
Allowed values: all, arena, funds
Default: all
AI fund source. One of all, arena, or funds.
tickerstringoptional
Ticker symbol filter.
actionenumoptional
Allowed values: all, buy, sell, hold
Default: all
Trade action filter. One of all, buy, sell, or hold.
include_holdsbooleanoptional
Allowed values: false, true
Default: false
Include hold decisions in AI fund trade output.
lookback_daysintegeroptional
Allowed values: 1, 3, 7, 14, 30, 90, 365
Default: 7
Lookback window in days.
limitintegeroptional
Default: 100
Maximum number of rows to return.
Was this page helpful?
GET/aifunds/trades
curl "https://api.rallies.ai/v1/aifunds/trades?source=all&ticker=NVDA&limit=100" \
  -H "X-Rallies-API-Key: $RALLIES_API_KEY"

RESPONSE

JSON
{
  "trades": [
    {
      "fund": {
        "id": "ai_growth_01",
        "name": "AI Growth Alpha",
        "strategy": "growth"
      },
      "ticker": "NVDA",
      "side": "buy",
      "asset_class": "stock",
      "price": 126.88,
      "notional_value_usd": 1268.8,
      "realized_return_pct": 0,
      "thesis": "The fund added exposure after stronger AI infrastructure demand.",
      "executed_at": "2026-05-25T10:42:00Z"
    }
  ]
}