Registry / analytics / openbb-fmp

openbb-fmp

JSON →
library1.6.1pypypi✓ verified 83d ago

An extension for OpenBB providing access to Financial Modeling Prep (FMP) data. Version 1.6.1, requires Python 3.10 or above. Released as part of the OpenBB Platform v4 ecosystem.

pip install openbb-fmp
INSTALL
IMPORT
SIG · OPENBB-FMP
O
openbb-fmp
analyticspythonv1.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

OBB
from openbb import obb
from openbb_fmp import obb
The main entry point is the openbb package, not the extension.

Log in with an OpenBB personal access token and fetch data from FMP.

from openbb import obb obb.account.login(pat=os.environ.get('OPENBB_PAT', '')) # Fetch income statement for Apple result = obb.equity.fundamentals.income(symbol='AAPL', provider='fmp') print(result.to_df())
Debug
Known issues
breakingFrom OpenBB v4 (>=4.0.0), the import path and API have changed significantly. The old import 'from openbb_terminal.sdk import openbb' no longer works.
fix
Use 'from openbb import obb' and follow the new platform structure.
affects: >=4.0.0
gotchaAn OpenBB PAT (Personal Access Token) is required; FMP API key alone will not work. The provider is selected via 'provider="fmp"' parameter.
fix
Get a PAT from my.openbb.co and set OPENBB_PAT environment variable.
affects: all
gotchaSome endpoints may not support FMP as provider. Always check the available providers for a given command.
fix
Use obb.providers to list available providers for a given endpoint, e.g., obb.equity.fundamentals.income.providers.
affects: all
deprecatedThe 'openbb_fmp' extension may be superseded by newer extensions or bundled with OpenBB. Check official documentation for current recommended providers.
fix
Consider using 'openbb-fmp' only if you specifically need FMP; otherwise use the aggregated providers in OpenBB core.
affects: >=1.6.0
Errors
Common errors & fixes
openbb_fmp.exceptions.OpenBBFMPError: No data returned for symbol
Invalid symbol or no data available for the requested time range.
fix
Verify the symbol exists on FMP and try a different date range or endpoint.
ModuleNotFoundError: No module named 'openbb_fmp'
The extension is not installed.
fix
Run 'pip install openbb-fmp' and ensure it is imported as part of the OpenBB platform, not directly.
AttributeError: module 'openbb' has no attribute 'stocks'
Using old OpenBB Terminal syntax with the new v4 platform.
fix
Use the new hierarchical commands like obb.equity.* instead of obb.stocks.*.
Upgrade
Version history
1.6.1latest on PyPI · released May 26, 2026
Audit
Dependencies
openbbrequiredCore OpenBB platform required
Agent activity
31 hits · last 30 days
node
30
Resources

No resource links recorded.

openbb-fmp — pip install openbb-fmp · libregistry