transcript
Get earnings call transcripts for a given company.
Examples
from openbb import obb
obb.equity.fundamental.transcript(symbol='AAPL', year='2020', 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 | |
year | Union[Union[int, str], List[Union[int, str]]] | Year of the earnings call transcript. 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 | Union[Union[int, str], List[Union[int, str]]] | Year of the earnings call transcript. Multiple items allowed for provider(s): fmp. | False |
Returns
OBBject
results : List[EarningsCallTranscript]
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. |
quarter | int | Quarter of the earnings call transcript. |
year | int | Year of the earnings call transcript. |
date | Union[datetime, str] | The date of the data. |
content | str | Content of the earnings call transcript. |
Name | Type | Description |
---|---|---|
symbol | str | Symbol representing the entity requested in the data. |
quarter | int | Quarter of the earnings call transcript. |
year | int | Year of the earnings call transcript. |
date | Union[datetime, str] | The date of the data. |
content | str | Content of the earnings call transcript. |