n8n recipe
SEC API n8n Workflow
A developer-friendly n8n pattern for teams that want SEC filing updates in a workflow runner without running their own EDGAR ingest.
GET /v1/sec/watchlist/changes?tickers=AAPL,MSFT,NVDA&since=2026-07-01
HTTP Request node
Method: GET
URL: https://sec-event-intelligence.p.rapidapi.com/v1/sec/watchlist/changes
Query:
tickers=AAPL,MSFT,NVDA
since=2026-07-01
Headers:
x-rapidapi-host=sec-event-intelligence.p.rapidapi.com
x-rapidapi-key={{ $env.RAPIDAPI_KEY }}
Workflow Setup
This recipe validates whether buyers want SEC filing data inside automation tools before we build deeper app-specific support.
- Trigger the workflow on a schedule or after a portfolio list changes.
- Call the watchlist endpoint once with a comma-separated ticker list.
- Split grouped ticker changes into downstream notifications, database rows, or issue tickets.
Endpoints Used
The integration uses live SEC Event Intelligence endpoints available through RapidAPI subscriptions.
GET /v1/sec/watchlist/changesGET /v1/sec/company/{ticker}/profileGET /v1/sec/forms/{accessionNo}/summary
Integration FAQ
Does this require an n8n community node?
No. The recipe uses a generic HTTP Request node and RapidAPI headers.
Can one request monitor several tickers?
Yes. The watchlist endpoint accepts a comma-separated ticker list and returns grouped changes.
/downloads/sec-api-n8n-watchlist-workflow.json.