Skip to main content
Financial Context’s external market-data API is designed for tools that need account-scoped, metered access to quotes and company data.

API Key Clients

Use API keys for server-to-server integrations:
curl "https://openapi.fcontext.com/api/market-data/quote?symbols=AAPL.US" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"

OAuth Clients

CLI, MCP, and agent integrations can use OAuth bearer tokens:
curl "https://openapi.fcontext.com/api/market-data/content/news?symbol=AAPL.US" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
OAuth credentials must include the market_data scope.

Generic GET Endpoints

Supported read-only US market-data GET endpoints can be reached by placing the data path after /api/market-data:
curl "https://openapi.fcontext.com/api/market-data/market/top_movers?market=US&count=10" \
  -H "x-api-key: YOUR_FCONTEXT_API_KEY"
Requests are billed as Financial Context data requests and are visible in usage reporting.