v1

latestOpenAPI 3.1.02026-07-2268276396.6 KB
Fund Holdings

Fund Position Signals

Retrieve a strategic overview of top stocks based on aggregated position changes by hedge funds, utilizing data from the most recent SEC 13F filings. This endpoint provides a detailed overview of fund activities, capturing changes across calls, puts, new positions, closures, and net adjustments. It highlights where hedge funds are intensifying their focus, reducing exposure, or completely shifting their investment strategies, helping users identify trends and strategic moves in the market.

post/v1/holdings/funds/trends/

Request body

type'stock' | 'etf'

Enum for security type values.

market_cap'mega_cap' | 'large_cap' | 'mid_cap' | 'small_cap' | 'micro_cap'

Enum for market capitalization values.

sort_dirstring

The order to sort the results by. One of 'asc' or 'desc'.

Example request

{
  "sort_dir": "desc"
}

Response

Successful Response

Example response

{
  "results": {
    "calls": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "puts": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "new_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "closed_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "increased_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "reduced_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "holding_in_top": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "current": 150,
        "previous": 120,
        "change": 30,
        "change_percent": 25
      }
    ],
    "net_calls": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_calls": 5000,
        "calls": 10000,
        "puts": 5000
      }
    ],
    "net_puts": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_puts": 3000,
        "calls": 5000,
        "puts": 8000
      }
    ],
    "net_new_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_new_positions": 25,
        "new_positions": 50,
        "closed_positions": 25
      }
    ],
    "net_closed_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_closed_positions": 15,
        "new_positions": 20,
        "closed_positions": 35
      }
    ],
    "net_increased_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_increased_positions": 40,
        "increased_positions": 60,
        "reduced_positions": 20
      }
    ],
    "net_reduced_positions": [
      {
        "rp_entity_id": "D8442A",
        "target_identifier_id": "AAPL",
        "name": "Apple Inc.",
        "active": true,
        "net_reduced_positions": 30,
        "increased_positions": 40,
        "reduced_positions": 70
      }
    ]
  },
  "metadata": {
    "reporting_year": 2025,
    "reporting_quarter": 1,
    "sort_dir": "desc",
    "mapping": {
      "fund": {
        "Q1GA4E": "stillwater-wealth-management-group"
      },
      "stock": {
        "4A6F00": "GOOGL"
      }
    }
  }
}