# Stock Dividend History Scraper - Payouts & Splits

**Use case:** 

Scrape the full dividend payment and stock-split history for any stock or ETF from Yahoo Finance. No API key, pay per result.

## Input

```json
{
  "symbols": [
    "AAPL",
    "KO",
    "JNJ"
  ],
  "dataTypes": [
    "dividends"
  ],
  "interval": "1d",
  "range": "1mo",
  "newsCount": 10,
  "screenerCount": 25
}
```

## Output

```json
{
  "dataType": {
    "label": "Type",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "recommendation": {
    "label": "Rating",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "title": {
    "label": "News",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  }
}
```

## About this Actor

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