GET https://api.marketstack.com/v1/dividends?symbols=AAPL
Using the dividends
endpoint you will be able to look up information about the stock dividend for different symbols. You will be able to find and try out an example API request below.
Body
PARAM
Key | Datatype | Required | Description |
symbols
|
string | [Required] Specify one or multiple comma-separated stock symbols (tickers) for your request, e.g. AAPL or AAPL, MSFT. Each symbol consumes one API request. Maximum: 100 symbols. |
HEADERS
Key | Datatype | Required | Description |
RESPONSES
status OK
{
"pagination": {
"limit": 100,
"offset": 0,
"count": 83,
"total": 83
},
"data": [
{
"date": "2024-02-09",
"dividend": 0.24,
"symbol": "AAPL"
},
{
"date": "2023-11-10",
"dividend": 0.24,
"symbol": "AAPL"
},
{
"date": "2023-08-11",
"dividend": 0.24,
"symbol": "AAPL"
},
{
"date": "2023-05-12",
"dividend": 0.24,
"symbol": "AAPL"
},
{
"date": "2023-02-10",
"dividend": 0.23,
"symbol": "AAPL"
},
{
"date": "2022-12-23",
"dividend": 0.17,
"symbol": "AAPL"
},
{
"date": "2022-11-04",
"dividend": 0.23,
"symbol": "AAPL"
},
{
"date": "2022-08-05",
"dividend": 0.23,
"symbol": "AAPL"
},
{
"date": "2022-05-06",
"dividend": 0.23,
"symbol": "AAPL"
},
{
"date": "2022-02-04",
"dividend": 0.22,
"symbol": "AAPL"
},
{
"date": "2021-11-05",
"dividend": 0.22,
"symbol": "AAPL"
},
{
"date": "2021-08-06",
"dividend": 0.22,
"symbol": "AAPL"
},
{
"date": "2021-05-07",
"dividend": 0.22,
"symbol": "AAPL"
},
{
"date": "2021-02-05",
"dividend": 0.21,
"symbol": "AAPL"
},
{
"date": "2020-11-06",
"dividend": 0.21,
"symbol": "AAPL"
},
{
"date": "2020-08-07",
"dividend": 0.82,
"symbol": "AAPL"
},
{
"date": "2020-05-08",
"dividend": 0.82,
"symbol": "AAPL"
},
{
"date": "2020-02-07",
"dividend": 0.77,
"symbol": "AAPL"
},
{
"date": "2019-11-07",
"dividend": 0.77,
"symbol": "AAPL"
},
{
"date": "2019-08-09",
"dividend": 0.77,
"symbol": "AAPL"
},
{
"date": "2019-05-10",
"dividend": 0.77,
"symbol": "AAPL"
},
{
"date": "2019-02-08",
"dividend": 0.73,
"symbol": "AAPL"
},
{
"date": "2018-11-08",
"dividend": 0.73,
"symbol": "AAPL"
},
{
"date": "2018-08-10",
"dividend": 0.73,
"symbol": "AAPL"
},
{
"date": & Curl curl -X GET 'https://api.marketstack.com/v1/dividends?symbols=AAPL?symbols=AAPL' ENDPOINTS |