RalliesAPI

Introduction

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

Ticker Snapshot

GET/retail/tickers/{ticker}

Get one ticker's retail intent, positioning, and flow context in one response.

Query Parameters

tickerstringrequired
Ticker symbol filter.
Was this page helpful?
GET/retail/tickers/{ticker}
curl "https://api.rallies.ai/v1/retail/tickers/NVDA" \
  -H "X-Rallies-API-Key: $RALLIES_API_KEY"

RESPONSE

JSON
{
  "ticker": "NVDA",
  "retail_interest": {
    "conversation_share_pct": 8.42,
    "related_tickers": [
      {
        "ticker": "AMD",
        "overlap_share_pct": 18.75
      },
      {
        "ticker": "AVGO",
        "overlap_share_pct": 12.5
      }
    ]
  },
  "positioning": {
    "snapshot_at": "2026-05-25 00:00:00",
    "asset_class": "stock",
    "ownership_share_pct": 7.91,
    "market_value_usd": 1842500.18,
    "portfolio_value_share_pct": 3.44,
    "avg_position_market_value": 8420.66,
    "avg_current_price": 126.88,
    "open_pnl_usd": 212450.44,
    "unrealized_return_pct": 13.04
  },
  "flows": {
    "window_days": 7,
    "active_trader_share_pct": 4.68,
    "buy_trade_share_pct": 62.5,
    "sell_trade_share_pct": 37.5,
    "buy_value_usd": 284500.12,
    "sell_value_usd": 112900.44,
    "net_flow_value_usd": 171599.68,
    "gross_flow_value_usd": 397400.56,
    "net_flow_pct": 43.18,
    "net_flow_pct_of_position_value": 9.31,
    "flow_bias": "net_buying",
    "latest_trade_at": "2026-05-25T10:38:44Z"
  }
}