Skip to content

Datasets Overview

FinBrain provides 12 alternative datasets focused on US-listed stocks and ETFs, normalized and ticker-mapped for direct integration into research pipelines, trading systems, and visual analysis. Each dataset is documented on its own page with sample responses, code examples, and use cases.

MetricValue
US stocks & ETFs12,000+ (NYSE and NASDAQ)
Datasets12
Historical depth10 years on average (varies by dataset)
Price forecast coverage28,000+ tickers across 20 global markets

The alternative datasets cover US-listed assets. Price Forecasts additionally span 20 global markets, including international equities, forex, crypto, and commodities.

We organize the dataset catalog into three categories based on the type of signal they provide.

Public disclosure data tied to government processes — congressional trading, lobbying activity, and federal contract awards. These datasets are difficult and time-consuming to aggregate independently and provide signals not found in price data alone.

DatasetDescriptionUpdate Frequency
House TradesUS House member trading activity from STOCK Act filingsAs filed
Senate TradesUS Senate member trading activity from STOCK Act filingsAs filed
Corporate LobbyingFederal LDA filings tracking corporate influenceQuarterly
Government ContractsFederal contract awards mapped to ticker symbolsDaily
Patent FilingsUSPTO granted patents mapped to ticker symbolsWeekly

Signals from public social platforms, news media, professional networks, and app ecosystems. Useful for monitoring narrative shifts, retail attention, and consumer-facing company performance.

DatasetDescriptionUpdate Frequency
News SentimentAI-generated sentiment scores from financial newsDaily
News ArticlesRecent financial news with source attributionReal-time
LinkedIn MetricsEmployee counts and follower growthWeekly
App Store RatingsiOS and Android app performanceWeekly
Reddit MentionsTicker mentions across investing subredditsEvery 4 hours

Quantitative forecasts and market activity data — price predictions, analyst views, options positioning, and insider transactions.

DatasetDescriptionUpdate Frequency
Price ForecastsStatistical price forecasts with confidence intervalsDaily
Analyst RatingsWall Street ratings, upgrades, downgrades, price targetsDaily
Put/Call RatiosOptions market sentiment and flowDaily
Insider TransactionsSEC Form 4 filings tracking insider activityReal-time

All FinBrain datasets share a consistent structure that makes them straightforward to integrate.

Every API response is wrapped in the same envelope:

{
"success": true,
"data": {
"symbol": "AAPL",
"name": "Apple Inc.",
// dataset-specific fields
},
"meta": {
"timestamp": "2026-04-18T12:00:00.000Z"
}
}

This means the integration code for one dataset is structurally identical to the integration code for any other.

Every record is mapped to a stock ticker symbol at ingestion. You can query LinkedIn metrics, lobbying filings, government contracts, and Reddit mentions all by the same AAPL or MSFT symbol — no fuzzy matching, no name resolution, no manual joining.

Field names use camelCase across all datasets. Numeric values are returned as numbers (not strings). Dates use ISO 8601 format. This consistency matters when you’re joining datasets across endpoints in pipeline code.

Our longest-running datasets carry 10+ years of historical data, and corporate lobbying reaches back 15+ years. Newer series have shallower history and are being backfilled toward similar depth. Check individual dataset pages for exact coverage.

Every dataset is delivered through four interfaces. Choose the one that fits your workflow:

InterfaceUse Case
FinBrain TerminalVisual exploration, screening, ticker deep dives, no code
REST APIProduction pipelines, custom integrations, any language
Python SDKQuant research, backtesting, Jupyter workflows
MCP IntegrationLLM-powered research, AI assistants, semantic queries

The same data is available through every interface — pick whichever matches how your team works.