🔧 Tools & Platforms
OpenBB Terminal
OpenBB is an **open-source financial data platform** for analysts, quants, and AI agents. Originally built as a CLI-based "Bloomberg Terminal for retail investors," it has evolved into a modular Python SDK + REST API + AI-native workspace that aggregates data from close to 100 providers across every major asset class: equities, options, crypto, forex, fixed income, macro economy, and alternatives.
2
Minutes
4
Concepts
+15+30
Read+Quiz
1
How It Works
Data Architecture
  • Standardized interface: Every command returns an OBBject that converts to pandas DataFrame via .to_df() or .to_dataframe()
  • Provider abstraction: Same function signature, swap providers with provider="yfinance" or provider="polygon" — the SDK normalizes the response schema
  • Extension framework: Generate Workspace, MCP, CLI, and Python interfaces from existing FastAPI apps with no additional code
Data Providers (Free Tier)
ProviderCoverageNotes
yFinanceEquity prices, fundamentals, optionsFree, no API key needed
FREDMacro indicators (GDP, CPI, rates)Free, requires API key
SEC EDGARCompany filings, insider tradesFree, public data
TiingoEOD prices, IEX real-timeFree tier available
CBOEOptions data, VIXFree endpoints
Data Providers (Paid / Premium)
ProviderCoverageNotes
Polygon.ioReal-time equities, options, cryptoStarts $29/mo
IntrinioFundamentals, options, real-timeEnterprise pricing
FMPFull financial statements, ratiosFree tier + paid
BenzingaNews, analyst ratings, options activityPaid
Routers (Namespace Organization)
  • obb.equity — prices, fundamentals, estimates, ownership, screener
  • obb.derivatives — options chains, expirations, Greeks
  • obb.economy — FRED series, CPI, GDP, treasury rates, central bank data
  • obb.crypto — prices, on-chain metrics
  • obb.fixedincome — yields, spreads, corporate bonds
  • obb.news — multi-provider news aggregation
  • obb.etf — ETF holdings, performance, sectors
  • obb.index — major indices, constituents
  • obb.technical — built-in technical analysis indicators
AI & Copilot Integration
  • OpenBB Copilot: AI assistant embedded in Workspace for natural language financial queries
  • MCP Server support: Connect OpenBB as a tool source for Claude and other AI agents
  • Pydantic AI bridge: openbb-pydantic-ai library for building custom agents that speak native OpenBB
  • Plugin Extensions: on_command_output patterns for controlling response delivery