Provenance
Freshness & coverage
Methods (12)
getQuote
readReal-time stock quote (Finnhub).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getCompanyProfile
readCompany profile (name, industry, cap, logo, IPO).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }searchSymbol
readSearch stock symbol or company.
Required paramsqueryInput schema
{ "type": "object", "properties": { "query": { "type": "string" } }, "additionalProperties": false, "required": [ "query" ] }getCompanyNews
readCompany news between two dates.
Required paramssymbolfromtoInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "from": { "type": "string" }, "to": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol", "from", "to" ] }getInsiderTransactions
readInsider buys/sells/option exercises.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getInstitutionalOwnership
readInstitutional ownership snapshot.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getEarningsCalendar
readEarnings calendar window.
Input schema
{ "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" } }, "additionalProperties": false }getEconomicCalendar
readMacro events calendar (Finnhub).
Input schema
{ "type": "object", "properties": { "from": { "type": "string" }, "to": { "type": "string" } }, "additionalProperties": false }getFinancials
readSEC-reported financials (10-K/10-Q) (Finnhub).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "freq": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getRecommendations
readAnalyst recommendations.
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }getCommodityCandles
readOHLCV candles for a symbol.
Required paramssymbolfromtoInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "resolution": { "type": "string" }, "from": { "type": "number" }, "to": { "type": "number" } }, "additionalProperties": false, "required": [ "symbol", "from", "to" ] }getPeers
readPeer company list (Finnhub).
Required paramssymbolInput schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false, "required": [ "symbol" ] }
