AI Price Forecasts
Deep learning predictions for 25,000+ tickers across 20 markets. Daily and monthly forecasts.
AI price forecasts, insider transactions, congressional trades, sentiment analysis, and more. REST API with Python SDK, visual Terminal, and MCP for LLM integration.
Trusted by quants, hedge funds and prop traders in 70+ countries
Access unique datasets that give you an edge in the markets.
AI Price Forecasts
Deep learning predictions for 25,000+ tickers across 20 markets. Daily and monthly forecasts.
Insider Trading
Real-time SEC Form 4 filings. Track executive purchases, sales, and option exercises.
Congressional Trades
Monitor US House Representatives trading activity. Disclosure-based signals.
News Sentiment
AI-powered sentiment scores from financial news. Gauge market mood and momentum.
Analyst Ratings
Track analyst upgrades, downgrades, and price target changes from major institutions.
Put/Call Ratios
Options market sentiment data. Monitor put/call ratios and options flow signals.
LinkedIn Metrics
Track employee counts and follower growth. Early indicators of company trajectory.
App Store Ratings
Mobile app performance data from iOS and Android stores. User sentiment signals.
Reddit Mentions
Track ticker mentions and sentiment across Reddit communities like WSB and investing.
Corporate Lobbying
Federal lobbying disclosures. Track corporate influence and regulatory exposure.
Government Contracts
Federal contract awards and modifications. Revenue signals from government spending.
Patent Filings
Track patent applications and grants by ticker. Early signals of innovation and R&D activity.
Build strategies, trading systems, research platforms, and financial applications with our developer-friendly API.
Access all datasets through a unified REST API. Use our Python SDK for rapid development, or integrate directly with any language.
pip install finbrain-python and start building in minutesfrom finbrain import FinBrainClient
fb = FinBrainClient(api_key="YOUR_API_KEY")
# Get AI predictionspredictions = fb.predictions.ticker( "AAPL", prediction_type="daily")
# Get insider trading datainsider = fb.insider_transactions("S&P 500", "AAPL")
# Get news sentimentsentiment = fb.sentiments("NASDAQ", "NVDA")# Get AI predictionscurl "https://api.finbrain.tech/v1/ticker/AAPL/predictions/daily?token=YOUR_API_KEY"
# Get insider transactionscurl "https://api.finbrain.tech/v1/insidertransactions/S%26P%20500/AAPL?token=YOUR_API_KEY"
# Get sentiment datacurl "https://api.finbrain.tech/v1/sentiments/NASDAQ/NVDA?token=YOUR_API_KEY"const API_KEY = "YOUR_API_KEY";const BASE = "https://api.finbrain.tech/v1";
const predictions = await fetch( `${BASE}/ticker/AAPL/predictions/daily?token=${API_KEY}`).then(res => res.json());
const insider = await fetch( `${BASE}/insidertransactions/S%26P%20500/AAPL?token=${API_KEY}`).then(res => res.json());#include <curl/curl.h>#include <nlohmann/json.hpp>
json get_predictions(const std::string& ticker, const std::string& api_key) { CURL* curl = curl_easy_init(); std::string response, url = "https://api.finbrain.tech/v1/ticker/" + ticker + "/predictions/daily?token=" + api_key;
curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response); curl_easy_perform(curl); curl_easy_cleanup(curl); return json::parse(response);}use reqwest::blocking::Client;
fn get_predictions(ticker: &str, api_key: &str) -> Result<serde_json::Value, reqwest::Error> { let url = format!( "https://api.finbrain.tech/v1/ticker/{}/predictions/daily?token={}", ticker, api_key ); Client::new().get(&url).send()?.json()}Visual analytics dashboard for traders who prefer charts over code.
No coding required. Access all FinBrain datasets through an intuitive web dashboard with interactive charts and screeners.
Connect FinBrain data directly to AI assistants like Claude, ChatGPT, and custom LLM applications.
Use the Model Context Protocol (MCP) to give your AI assistants direct access to FinBrain's financial datasets. Build smarter trading copilots.
pip install finbrain-mcp and add your configNo hidden fees. No rate limits. For quant researchers, strategy developers, and platform builders.
Visual analytics dashboard for traders and researchers.
Complete package with programmatic API access.
For funds, institutions, and high-volume applications.
Common questions about FinBrain API and data access.
Questions about API access and setup.
What data is available and how often it updates.
Subscription plans and support options.