Skip to main content

fomc_documents

Get FOMC documents by year and document type.

Source: https://www.federalreserve.gov/monetarypolicy/fomc_historical.htm

Source: https://www.federalreserve.gov/monetarypolicy/fomccalendars.htm

This function does not return the typical OBBject response.

The response is list[dict[str, str]] of FOMC documents and their URLs.

Each dictionary entry has keys: date, url, doc_type, and doc_format.

If as_choices is True, the response is a list of valid Workspace parameter choices. Keys, label and value, correspond with the doc_type + date, and the url, respectively.

Examples

from openbb import obb
obb.economy.fomc_documents(provider='federal_reserve')
# Filter all documents by year.
obb.economy.fomc_documents(provider='federal_reserve', year=2022)
# Filter all documents by year and document type.
obb.economy.fomc_documents(provider='federal_reserve', year=2022, document_type=minutes)

Parameters


Returns

results: list[FomcDocuments]

Serializable results.


provider: Optional[Literal['federal_reserve']]

Provider name.


warnings: Optional[list[Warning_]]

list of warnings.


chart: Optional[Chart]

Chart object.


extra: dict[str, Any]

Extra info.


Data