management_compensation
Get executive management team compensation for a given company over time.
Examples
from openbb import obb
obb.equity.fundamental.management_compensation(symbol='AAPL', provider='fmp')
Parameters
- standard
- fmp
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): fmp. | False |
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | Union[str, List[str]] | Symbol to get data for. Multiple items allowed for provider(s): fmp. | False | |
year | int | Year of the compensation. | None | True |
Returns
OBBject
results : List[ExecutiveCompensation]
Serializable results.
provider : Optional[Literal['fmp']]
Provider name.
warnings : Optional[List[Warning_]]
List of warnings.
chart : Optional[Chart]
Chart object.
extra : Dict[str, Any]
Extra info.
Data
- standard
- fmp
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
cik | str | Central Index Key (CIK) for the requested entity. |
company_name | str | The name of the company. |
industry | str | The industry of the company. |
year | int | Year of the compensation. |
name_and_position | str | Name and position. |
salary | Annotated[float, Ge(ge=0)] | Salary. |
bonus | Annotated[float, Ge(ge=0)] | Bonus payments. |
stock_award | Annotated[float, Ge(ge=0)] | Stock awards. |
incentive_plan_compensation | Annotated[float, Ge(ge=0)] | Incentive plan compensation. |
all_other_compensation | Annotated[float, Ge(ge=0)] | All other compensation. |
total | Annotated[float, Ge(ge=0)] | Total compensation. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
cik | str | Central Index Key (CIK) for the requested entity. |
company_name | str | The name of the company. |
industry | str | The industry of the company. |
year | int | Year of the compensation. |
name_and_position | str | Name and position. |
salary | Annotated[float, Ge(ge=0)] | Salary. |
bonus | Annotated[float, Ge(ge=0)] | Bonus payments. |
stock_award | Annotated[float, Ge(ge=0)] | Stock awards. |
incentive_plan_compensation | Annotated[float, Ge(ge=0)] | Incentive plan compensation. |
all_other_compensation | Annotated[float, Ge(ge=0)] | All other compensation. |
total | Annotated[float, Ge(ge=0)] | Total compensation. |
filing_date | date | Date of the filing. |
accepted_date | datetime | Date the filing was accepted. |
url | str | URL to the filing data. |