Massive (formerly Polygon.io) provides real-time and historical market data across stocks, options, crypto, and forex — including OHLCV aggregates, options chains with full Greeks, technical indicators, and financial news.Documentation Index
Fetch the complete documentation index at: https://mathematicalcompany.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Setup
Get an API key
Sign up at massive.com/pricing and get your key from the dashboard.
Massive is the rebrand of Polygon.io (October 2025). The API is identical — same endpoints, same keys.
Both
api.massive.com and api.polygon.io work. Horizon uses api.massive.com by default.Snapshots
Real-time price snapshot with day OHLCV, previous close, last trade, and last quote.- Python
- CLI
OHLCV Bars
Historical and intraday aggregates at any resolution.- Python
- CLI
second, minute, hour, day, week, month, quarter, year
Each bar contains:
| Field | Description |
|---|---|
o | Open price |
h | High price |
l | Low price |
c | Close price |
v | Volume |
vw | Volume-weighted average price |
t | Timestamp (Unix ms) |
n | Number of transactions |
Top Movers
Get the top 20 gainers or losers across the market.- Python
- CLI
Last Trade & Quote
Most recent trade and NBBO quote for a ticker.- Python
- CLI
Options Chain
Full options chain with Greeks (delta, gamma, theta, vega) and implied volatility.- Python
- CLI
| Field | Description |
|---|---|
break_even_price | Break-even price |
open_interest | Open interest |
implied_volatility | Implied volatility |
greeks.delta | Delta |
greeks.gamma | Gamma |
greeks.theta | Theta |
greeks.vega | Vega |
last_quote | Bid/ask |
day | Day OHLCV |
Technical Indicators
Built-in technical indicator calculations.- Python
- CLI
| Parameter | Description | Default |
|---|---|---|
timespan | second/minute/hour/day/week/month | day |
window | Lookback period | 50 (SMA/EMA), 14 (RSI) |
series_type | open/high/low/close | close |
limit | Number of values | 50 |
Ticker Details & Search
Look up company information or search for tickers.- Python
- CLI
News
Financial news with sentiment analysis and ticker tagging.- Python
- CLI
title, description, article_url, published_utc, tickers, and insights with sentiment analysis.
Corporate Actions
Dividends and stock splits.Crypto
Crypto market data usingX:BTCUSD format.
- Python
- CLI
Forex
Real-time forex conversions and snapshots. Pairs useC:EURUSD format.
- Python
- CLI
Market Status
Check if markets are currently open.Rate Limits
| Tier | REST Limit | Data |
|---|---|---|
| Free | 5 req/min | Delayed (15 min) |
| Paid | Unlimited | Real-time |
MCP Tools
All functions are available via themarket_data compound MCP tool with an action parameter:
aggregates, snapshot, last_trade, last_quote, previous_close, grouped_daily, gainers_losers, crypto_gainers_losers, ticker_details, search_tickers, market_status, market_holidays, sma, ema, rsi, macd, options_chain, options_contracts, news, dividends, splits, crypto_snapshot, forex_conversion, forex_snapshot.