BI dashboard recipe

SEC API Power BI Dashboard

A self-serve Power BI recipe for analysts who want SEC filing watchlist tables and dashboard visuals from the live RapidAPI endpoint without maintaining a custom EDGAR pipeline.

GET /v1/sec/watchlist/changes?tickers=AAPL,MSFT,NVDA&since=2026-07-01&limit=25
let
    Source = Json.Document(
        Web.Contents(
            "https://sec-event-intelligence.p.rapidapi.com",
            [
                RelativePath = "v1/sec/watchlist/changes",
                Query = [
                    tickers = "AAPL,MSFT,NVDA",
                    since = "2026-07-01",
                    limit = "25"
                ],
                Headers = [
                    #"x-rapidapi-host" = "sec-event-intelligence.p.rapidapi.com",
                    #"x-rapidapi-key" = RapidAPIKey
                ]
            ]
        )
    ),
    TickerGroups = Table.FromRecords(Source[data], null, MissingField.UseNull),
    ExpandedChanges = Table.ExpandListColumn(TickerGroups, "changes"),
    ExpandedChange = Table.ExpandRecordColumn(
        ExpandedChanges,
        "changes",
        {"changeType", "observedAt", "filing"},
        {"changeType", "observedAt", "filing"}
    ),
    ExpandedFiling = Table.ExpandRecordColumn(
        ExpandedChange,
        "filing",
        {"ticker", "companyName", "form", "filedAt", "accessionNo", "filingUrl"},
        {"ticker", "companyName", "form", "filedAt", "accessionNo", "filingUrl"}
    )
in
    ExpandedFiling

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 a certified Power BI connector?

No. It is a Power Query recipe that calls the live RapidAPI endpoint from Power BI Desktop.

Can the dashboard refresh automatically?

Refresh depends on the buyer's Power BI workspace, credentials, gateway, and schedule settings. The API side remains standard HTTPS JSON through RapidAPI.

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