MCP Server live — AI agents can now query 105M+ SEC facts. Connect your agent →
ValueinValuein

Live Data Preview

Real SEC financial data from 9 S&P 500 companies across 7 sectors — no signup required.

S&P 500 Sample
9 companies · 7 sectors · 5-year history
Free
This preview shows 9 of 500+ S&P 500 companies. Register free for the full S&P 500 dataset, or upgrade to Institutional for 12,000+ tickers including delisted companies with zero survivorship bias. See plans →
CompanySectorFYRevenueNet IncomeEPS (Diluted)Operating CF
Apple Inc.AAPL
Technology2024$391.0B$93.7B$6.08$118.3B
2023$383.3B$97.0B$6.13$110.5B
2022$394.3B$99.8B$6.11$122.2B
Microsoft Corp.MSFT
Technology2024$245.1B$88.1B$11.80$118.5B
2023$211.9B$72.4B$9.68$87.6B
2022$198.3B$72.7B$9.65$89.0B
Johnson & JohnsonJNJ
Healthcare2024$89.0B$14.3B$5.93$22.3B
2023$85.2B$35.2B$14.44$23.5B
JPMorgan ChaseJPM
Financials2024$180.5B$58.5B$19.75
2023$162.4B$49.6B$16.23
Exxon Mobil Corp.XOM
Energy2024$339.3B$33.7B$7.84$55.3B
2023$344.6B$36.0B$8.89$55.4B
Amazon.com Inc.AMZN
Consumer Discretionary2024$620.1B$59.2B$5.53$115.9B
2023$574.8B$30.4B$2.90$84.9B
Alphabet Inc.GOOGL
Communication2024$350.0B$100.7B$8.04$125.3B
2023$307.4B$73.8B$5.80$101.7B
NVIDIA Corp.NVDA
Technology2025$130.5B$72.9B$2.94$64.1B
2024$60.9B$29.8B$1.19$28.1B
Procter & GamblePG
Consumer Staples2024$84.0B$15.0B$6.02$19.8B
2023$82.0B$14.7B$5.90$16.8B
Source: SEC EDGAR via Valuein MCP Server. Annual data (10-K). All figures in USD. Showing cached sample data.

Want more data?

S&P 500 plan

Free

Full S&P 500 history after registration. No credit card.

  • 500+ companies, all S&P 500 constituents
  • Full history from 1994 to present
  • Income, balance sheet, cash flow, ratios
  • Python SDK + MCP Server + Parquet downloads
  • 10,000 API calls / day
Register Free

Institutional plan

$200/mo

Complete US universe for institutional research.

  • 12,000+ tickers including all delisted
  • Zero survivorship bias
  • 10-K, 10-Q, 20-F, 8-K + amendments
  • MCP + REST API + Parquet bulk download
  • Unlimited API calls, priority support
Get Access

Get this data via Python SDK

Install the SDK and query financial data with SQL. Under 60 seconds to first result.

pip install valuein-sdk
example.py
from valuein_sdk import ValueinClient

client = ValueinClient()

# See all available tables
print(client.tables())

# Query Apple fundamentals
sql = """
  SELECT fiscal_year, revenue, net_income, eps_diluted
  FROM fact
  WHERE ticker = 'AAPL' AND fiscal_period = 'FY'
  ORDER BY fiscal_year DESC
  LIMIT 5
"""
df = client.query(sql)
print("results: ", df.head())