Internal tools recipe

SEC API Retool Dashboard

A self-serve Retool REST API resource recipe for internal tools teams that want SEC filing watchlists, filters, and tables without maintaining an EDGAR ingest service.

GET /v1/sec/watchlist/changes?tickers=AAPL,MSFT,NVDA&since=2026-07-01&limit=25
REST API resource: SEC Event Intelligence
Base URL: https://sec-event-intelligence.p.rapidapi.com
Headers:
  x-rapidapi-host: sec-event-intelligence.p.rapidapi.com
  x-rapidapi-key: YOUR_RAPIDAPI_KEY

Query: watchlistChanges
Method: GET
Path: /v1/sec/watchlist/changes
URL parameters:
  tickers = {{ tickerInput.value || "AAPL,MSFT,NVDA" }}
  since = {{ sinceDate.value || "2026-07-01" }}
  limit = 25

Table data:
  {{ watchlistChanges.data.data.flatMap(group =>
    (group.changes || []).map(change => ({
      ticker: group.ticker,
      form: change.filing?.form,
      companyName: change.filing?.companyName,
      filedAt: change.filing?.filedAt,
      accessionNo: change.filing?.accessionNo,
      filingUrl: change.filing?.filingUrl
    }))
  ) }}

Workflow Setup

This recipe validates whether buyers want SEC filing data inside automation tools before we build deeper app-specific support.

Endpoints Used

The integration uses live SEC Event Intelligence endpoints available through RapidAPI subscriptions.

Integration FAQ

Is this an official Retool template?

No. It is a REST API resource recipe that shows how to call the live RapidAPI endpoint from a Retool app.

Where should the RapidAPI key be stored?

Store it in the Retool resource authentication or header configuration rather than in visible app inputs, table data, or source-controlled app code.

No investment advice. These recipes move public SEC filing metadata into automation tools. They do not provide recommendations, ratings, signals, or personalized financial guidance.