API Get Access
API Reference
  • Introduction
  • Getting Started
  • Authentication
  • Errors
Stock
  • Fund Confidence
  • Insider Confidence
  • Analyst Confidence
  • News Confidence
Funds
  • Portfolios
  • Holdings
Fund Trends
  • Funds Holding
  • Funds Holding in Top 10
  • Funds New Positions
  • Funds Closed Positions
  • Funds Increased Positions
  • Funds Reduced Positions
  • Funds Calls
  • Funds Puts
  • Funds Net New Positions
  • Funds Net Closed Positions
  • Funds Net Increased Positions
  • Funds Net Reduced Positions
  • Funds Net Calls
  • Funds Net Puts
Analysts
  • Analyst Firms
  • Analyst Firm
  • Analysts
  • Analyst
  • Analyst Ratings
Analyst Trends
  • Analyst Upside
News Trends
  • News Positivity
Fund Trends
Funds Increased Positions

Retrieve stocks ranked by the number of funds that increased their existing position in the latest reporting quarter.

Parameters

page
number

The page number to retrieve.

Defaults to 1.

page_size
number

The number of items per page.

If specified, must be between 1 and 10000 inclusive.

Defaults to 100.

sort_by
string

The field to sort the results by.

One of current, change, change_percent.

Defaults to current.

sort_dir
string

The order to sort the results by.

One of asc, desc.

Defaults to desc.

type
string

The type of security to retrieve.

One of stock, etf.

Returns all types if not specified.

market_cap
string

The market cap of securities to retrieve.

One or more of mega_cap, large_cap, mid_cap, small_cap, micro_cap, separated by commas.

Returns all market caps if not specified.

GET/v1/fund-trends/increased-positions
RESPONSE
      {
  "page": 1,
  "page_size": 100,
  "has_more_pages": true,
  "reporting_year": 2024,
  "reporting_quarter": 3,
  "stocks": [
    {
      "ticker": "META",
      "current": 1890,
      "previous": 1948,
      "change": -58,
      "change_percent": -2.98
    },
    {
      "ticker": "JPM",
      "current": 1688,
      "previous": 1697,
      "change": -9,
      "change_percent": -0.53
    },
    {
      "ticker": "XOM",
      "current": 1672,
      "previous": 2261,
      "change": -589,
      "change_percent": -26.05
    }
  ]
}