Excel recipe

SEC API for Excel Power Query

A self-serve Power Query recipe for analysts who want refreshed SEC filing watchlists in Excel using the live RapidAPI endpoint instead of a custom EDGAR ingest job.

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

Workflow Setup

This recipe shows how to move SEC filing data into automation tools using live HTTPS endpoints and standard API credentials.

Endpoints Used

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

Integration FAQ

Is this an Excel add-in?

No. It is a copy-ready Power Query M recipe for the live RapidAPI endpoint.

Should the RapidAPI key be hard-coded in the query?

No. Use a Power Query parameter or a protected workbook workflow instead of pasting the key into shared cells.

No investment advice. These recipes move public SEC filing metadata into automation tools. They do not provide recommendations, ratings, signals, or personalized financial guidance. The starter workflow file is available at /downloads/sec-filings-excel-power-query.pq.