Skip to main content

dividends

Get historical dividend data for a given company.

Examples

from openbb import obb
obb.equity.fundamental.dividends(symbol='AAPL', provider='intrinio')

Parameters

NameTypeDescriptionDefaultOptional
symbolUnion[str, List[str]]Symbol to get data for. Multiple items allowed for provider(s): nasdaq.False
start_dateUnion[date, str]Start date of the data, in YYYY-MM-DD format.NoneTrue
end_dateUnion[date, str]End date of the data, in YYYY-MM-DD format.NoneTrue

Returns

OBBject
results : List[HistoricalDividends]
Serializable results.

provider : Optional[Literal['fmp', 'intrinio', 'nasdaq', 'tmx', 'yfinance']]
Provider name.

warnings : Optional[List[Warning_]]
List of warnings.

chart : Optional[Chart]
Chart object.

extra : Dict[str, Any]
Extra info.

Data

NameTypeDescription
ex_dividend_datedateThe ex-dividend date - the date on which the stock begins trading without rights to the dividend.
amountfloatThe dividend amount per share.