# Get Dividend Payment History for a Stock

**Use case:** 

Every dividend payment for a ticker over the requested range, with pay date and amount.

## Input

```json
{
  "tickers": [
    "KO",
    "NVDA"
  ],
  "dataBlocks": [
    "history",
    "dividends",
    "splits"
  ],
  "range": "5y",
  "interval": "1d",
  "fundamentalsGranularity": "annual",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "dividends": {
    "label": "Dividends",
    "format": "array"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "amount": {
    "label": "Amount",
    "format": "number"
  }
}
```

## About this Actor

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