Developer docs

Finage integration

Finage provides secure RESTful APIs for real-time and historical financial…

Updated June 2026 40 actions available

Provider
finage
Category
Analytics
Setup
User-supplied API key
Actions
40 available

Quick start

Call Finage from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Finage'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(
  "FINAGE_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 Finage 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

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

Show all 40 actions
  • FINAGE_GET_CURRENCY_DETAIL
  • FINAGE_GET_FOREX_LAST_QUOTE
  • FINAGE_GET_FOREX_LAST_TRADE
  • FINAGE_GET_FOREX_MARKET_AGGREGATES
  • FINAGE_GET_FOREX_NEWS
  • FINAGE_GET_FOREX_PREVIOUS_CLOSE
  • FINAGE_GET_FOREX_SNAPSHOT
  • FINAGE_GET_MOST_ACTIVE_STOCKS
  • FINAGE_GET_SEC_RSS_FEED
  • FINAGE_GET_SECTOR_PERFORMANCE
  • FINAGE_GET_STOCK_COMPANY_DETAILS
  • FINAGE_GET_STOCK_HISTORICAL_DATA
  • FINAGE_GET_STOCK_LAST_QUOTE
  • FINAGE_GET_STOCK_LAST_TRADE
  • FINAGE_GET_STOCK_MARKET_AGGREGATES
  • FINAGE_GET_STOCK_MARKET_NEWS
  • FINAGE_GET_STOCK_MARKET_STATUS
  • FINAGE_GET_STOCK_PREVIOUS_CLOSE
  • FINAGE_GET_STOCK_SNAPSHOT
  • FINAGE_GET_TECHNICAL_INDICATORS
  • FINAGE_GET_TOP_GAINERS
  • FINAGE_GET_TOP_LOSERS
  • FINAGE_LIST_CRYPTOCURRENCIES
  • FINAGE_LIST_SYMBOLS
  • FINAGE_SEARCH_COUNTRY
  • FINAGE_SEARCH_CRYPTOCURRENCY
  • FINAGE_SEARCH_CURRENCY
  • FINAGE_SEARCH_MARKET

Build with Finage

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