# Institutional Holdings & Insider Transactions Report

**Use case:** 

Gather data on major institutional holders and recent insider transactions for specific companies. This provides valuable insights into 'smart money' movements 

## Input

```json
{
  "tickers": [
    "AAPL",
    "MSFT",
    "GOOG"
  ],
  "interval": "1d",
  "includeHistory": false,
  "includeFinancials": false,
  "includeDividends": false,
  "includeSplits": false,
  "includeNews": false,
  "includeRecommendations": false,
  "includeHolders": true,
  "includeOptions": false,
  "includeEarningsCalendar": false,
  "includeAnalystPriceTargets": false,
  "includeInsiderTransactions": true,
  "includeSustainability": false,
  "includeQuarterlyFinancials": false,
  "includeEarningsHistory": false,
  "concurrency": 3
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "dayChangePercent": {
    "label": "%",
    "format": "number"
  },
  "summaryUrl": {
    "label": "Yahoo URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Yahoo Finance Scraper](https://apify.com/crawlerbros/yahoo-finance-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/yahoo-finance-scraper) to learn more, explore other use cases, and run it yourself.