Catalog action Blockchain Data

Fetch recent news articles for a stock symbol from Finnhub within a date range (default: last 7 days). Returns headline, summary, source, URL, and publication timestamp per article, capped by limit (default 50, max 200). Ideal for: company news alerts, feeding headlines into AI summarization, event-driven trading workflows.

At a Glance

FieldValue
Action IDfinnhub-get-company-news
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagsfinnhub, stock, news, research, read

Payload Schema

FieldTypeRequiredDescription
symbolstringYesStock symbol to get news for, e.g. 'AAPL', 'TSLA'.
fromstringNoStart date in YYYY-MM-DD format. Default: 7 days ago.
tostringNoEnd date in YYYY-MM-DD format. Default: today.
limitnumberNoMaximum number of articles to return. Range: 1-200. Default: 50.

Result Schema

FieldTypeRequiredDescription
symbolstringYesThe symbol news is for
fromstringYesStart date of the queried range (YYYY-MM-DD)
tostringYesEnd date of the queried range (YYYY-MM-DD)
articlesarrayYesNews articles, most recent first
countnumberYesNumber of articles returned

Examples

json
{ "type": "finnhub-get-company-news", "payload": { "symbol": "ETH" }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.