list_dividends
Retrieve historical cash dividend data by specifying ticker, ex-dividend date, frequency, dividend type, and limit parameters for detailed financial analysis.
Instructions
Get historical cash dividends.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dividend_type | No | ||
ex_dividend_date | No | ||
frequency | No | ||
limit | No | ||
params | No | ||
ticker | No |
Input Schema (JSON Schema)
{
"properties": {
"dividend_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dividend Type"
},
"ex_dividend_date": {
"anyOf": [
{
"type": "string"
},
{
"format": "date-time",
"type": "string"
},
{
"format": "date",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ex Dividend Date"
},
"frequency": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Frequency"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Params"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker"
}
},
"title": "list_dividendsArguments",
"type": "object"
}