Developer docs

Polygon.io integration

Polygon.io provides real-time and historical market data APIs for stocks,…

Updated June 2026 60 actions available

Provider
polygon_io
Category
Analytics
Setup
User-supplied API key
Actions
60 available

Quick start

Call Polygon.io from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Polygon.io's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "POLYGON_IO_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Polygon.io API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

60 actions exposed via the Polygon.io integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 60 actions
  • POLYGON_IO_GET_FILING_FILE
  • POLYGON_IO_GET_FOREX_EMA
  • POLYGON_IO_GET_FOREX_MACD
  • POLYGON_IO_GET_FOREX_REAL_TIME_CURRENCY_CONVERSION
  • POLYGON_IO_GET_FOREX_RSI
  • POLYGON_IO_GET_FOREX_SMA
  • POLYGON_IO_GET_FUTURES_QUOTES
  • POLYGON_IO_GET_GROUPED_DAILY
  • POLYGON_IO_GET_HISTORIC_FOREX_TICKS
  • POLYGON_IO_GET_INFLATION_EXPECTATIONS
  • POLYGON_IO_GET_IPO_DATA
  • POLYGON_IO_GET_LABOR_MARKET
  • POLYGON_IO_GET_MACD
  • POLYGON_IO_GET_MARKET_HOLIDAYS
  • POLYGON_IO_GET_MARKET_STATUS
  • POLYGON_IO_GET_NEWS
  • POLYGON_IO_GET_OPTIONS_CONTRACT_OVERVIEW
  • POLYGON_IO_GET_OPTIONS_EMA
  • POLYGON_IO_GET_OPTIONS_MACD
  • POLYGON_IO_GET_OPTIONS_RSI
  • POLYGON_IO_GET_OPTIONS_SMA
  • POLYGON_IO_GET_RELATED_COMPANIES
  • POLYGON_IO_GET_RSI
  • POLYGON_IO_GET_SMA
  • POLYGON_IO_GET_SPLITS
  • POLYGON_IO_GET_STOCKS_CUSTOM_BARS
  • POLYGON_IO_GET_STOCKS_DAILY_MARKET_SUMMARY
  • POLYGON_IO_GET_STOCKS_FILINGS_RISK_FACTORS
  • POLYGON_IO_GET_STOCKS_FILINGS_SECTIONS
  • POLYGON_IO_GET_STOCKS_FREE_FLOAT
  • POLYGON_IO_GET_STOCKS_FULL_MARKET_SNAPSHOT
  • POLYGON_IO_GET_STOCKS_INCOME_STATEMENTS
  • POLYGON_IO_GET_STOCKS_PREVIOUS_DAY_BAR
  • POLYGON_IO_GET_STOCKS_RISK_FACTOR_TAXONOMIES
  • POLYGON_IO_GET_STOCKS_V1_DIVIDENDS
  • POLYGON_IO_GET_STOCKS_V1_SHORT_INTEREST
  • POLYGON_IO_GET_STOCKS_V1_SHORT_VOLUME
  • POLYGON_IO_GET_STOCKS_V1_SPLITS
  • POLYGON_IO_GET_TICKER_EVENTS
  • POLYGON_IO_GET_TICKER_OVERVIEW
  • POLYGON_IO_GET_TICKER_TYPES
  • POLYGON_IO_GET_TREASURY_YIELDS
  • POLYGON_IO_LIST_EXCHANGES
  • POLYGON_IO_LIST_FILING_FILES
  • POLYGON_IO_LIST_FILINGS
  • POLYGON_IO_LIST_OPTIONS_CONTRACTS
  • POLYGON_IO_POLYGON_LAST_QUOTE_FOR_A_SYMBOL
  • POLYGON_IO_POLYGON_LAST_TRADE_FOR_A_CURRENCY_PAIR

Build with Polygon.io

Open OverSkill, describe what you want to build, and reference Polygon.io in your prompt — the AI will wire up the integration automatically.