Skip to main content

dividend

Get historical and upcoming dividend payments. Includes dividend amount, ex-dividend and payment dates.

Examples

from openbb import obb
obb.equity.calendar.dividend(provider='fmp')
# Get dividend calendar for specific dates.
obb.equity.calendar.dividend(start_date='2024-02-01', end_date='2024-02-07', provider='nasdaq')

Parameters

NameTypeDescriptionDefaultOptional
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[CalendarDividend]
Serializable results.

provider : Optional[Literal['fmp', 'nasdaq']]
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.
symbolstrSymbol representing the entity requested in the data.
amountfloatThe dividend amount per share.
namestrName of the entity.
record_datedateThe record date of ownership for eligibility.
payment_datedateThe payment date of the dividend.
declaration_datedateDeclaration date of the dividend.