← Tools Reference

Finage

Finage integration (Finance, Data). Imported from open-connector.

API key6 toolshttps://api.finage.co.uk
GET
finage_list_stock_symbols
List Finage U.S. stock symbols with optional page and search filters.

/symbol-list/us-stock

2 parameters
ParamTypeRequiredDescription
pageintegeroptionalResult page number for the Finage symbol list.
searchstringoptionalSearch text used to filter symbols by ticker or name.
GET
finage_get_last_quote
Get the latest Finage quote for a single U.S. stock symbol.

/last/stock/{symbol}

1 parameter
ParamTypeRequiredDescription
symbolstringrequiredU.S. stock symbol to request from Finage.
GET
finage_get_last_trade
Get the latest Finage trade for a single U.S. stock symbol.

/last/trade/stock/{symbol}

1 parameter
ParamTypeRequiredDescription
symbolstringrequiredU.S. stock symbol to request from Finage.
GET
finage_get_aggregates
Get Finage OHLCV aggregate bars for a U.S. stock over a date range.

/agg/stock/{symbol}/{multiplier}/{timespan}/{dateFrom}/{dateTo}

7 parameters
ParamTypeRequiredDescription
symbolstringrequiredU.S. stock symbol to aggregate.
multiplierintegerrequiredPositive bar multiplier used by the Finage aggregate endpoint.
timespanstringrequiredAggregation interval unit supported by Finage.
dateFromstringrequiredInclusive start date in YYYY-MM-DD format.
dateTostringrequiredInclusive end date in YYYY-MM-DD format.
limitintegeroptionalMaximum number of aggregate bars to return, up to 50000.
sortstringoptionalSort direction for aggregate bars ordered by timestamp.
GET
finage_get_previous_close
Get the previous close aggregate bar for a single Finage U.S. stock symbol.

/agg/stock/prev-close/{symbol}

1 parameter
ParamTypeRequiredDescription
symbolstringrequiredU.S. stock symbol to request from Finage.
GET
finage_get_snapshot
Get a Finage stock snapshot for a bounded list of U.S. stock symbols, including quotes, trades, or both.

/snapshot/stock

3 parameters
ParamTypeRequiredDescription
symbolsarrayrequiredBounded list of U.S. stock symbols to request from Finage.
includeQuotesbooleanoptionalWhether to include quote rows in the snapshot response. Defaults to true.
includeTradesbooleanoptionalWhether to include trade rows in the snapshot response. Defaults to false.