{
  "info": {
    "_postman_id": "2fe4c40f-d2c0-4ed5-a3f8-0c4555e1c001",
    "description": "Importable Postman collection for the SEC Event Intelligence API on RapidAPI. Set rapidapi_key before calling protected endpoints.",
    "name": "SEC Event Intelligence API",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "Public demo",
      "request": {
        "description": "Unauthenticated sample response for response-shape review.",
        "header": [],
        "method": "GET",
        "url": {
          "host": [
            "api",
            "data-apis",
            "com"
          ],
          "path": [
            "demo"
          ],
          "protocol": "https",
          "raw": "https://api.data-apis.com/demo"
        }
      }
    },
    {
      "name": "Latest filings",
      "request": {
        "description": "Fetch recent SEC filings, optionally filtered by form type.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "latest"
          ],
          "query": [
            {
              "key": "form",
              "value": "8-K"
            },
            {
              "key": "limit",
              "value": "25"
            }
          ],
          "raw": "{{base_url}}/v1/sec/latest?form=8-K&limit=25"
        }
      }
    },
    {
      "name": "Filing change feed",
      "request": {
        "description": "Poll newly observed filings since a date.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "changes"
          ],
          "query": [
            {
              "key": "since",
              "value": "2026-07-01"
            },
            {
              "key": "ticker",
              "value": "AAPL"
            },
            {
              "key": "limit",
              "value": "25"
            }
          ],
          "raw": "{{base_url}}/v1/sec/changes?since=2026-07-01&ticker=AAPL&limit=25"
        }
      }
    },
    {
      "name": "Watchlist changes",
      "request": {
        "description": "Poll filing changes for multiple tickers in one request.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "watchlist",
            "changes"
          ],
          "query": [
            {
              "key": "tickers",
              "value": "AAPL,MSFT,NVDA"
            },
            {
              "key": "since",
              "value": "2026-07-01"
            },
            {
              "key": "limit",
              "value": "25"
            }
          ],
          "raw": "{{base_url}}/v1/sec/watchlist/changes?tickers=AAPL,MSFT,NVDA&since=2026-07-01&limit=25"
        }
      }
    },
    {
      "name": "Company search",
      "request": {
        "description": "Resolve ticker symbols, CIKs, and company names.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "companies",
            "search"
          ],
          "query": [
            {
              "key": "q",
              "value": "apple"
            },
            {
              "key": "limit",
              "value": "10"
            }
          ],
          "raw": "{{base_url}}/v1/sec/companies/search?q=apple&limit=10"
        }
      }
    },
    {
      "name": "Company profile",
      "request": {
        "description": "Fetch company metadata, filing coverage, form counts, and latest filing.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "company",
            "AAPL",
            "profile"
          ],
          "query": [],
          "raw": "{{base_url}}/v1/sec/company/AAPL/profile"
        }
      }
    },
    {
      "name": "Insider filings",
      "request": {
        "description": "Retrieve public Forms 3, 4, and 5 metadata by ticker.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "insider-trades"
          ],
          "query": [
            {
              "key": "ticker",
              "value": "MSFT"
            },
            {
              "key": "limit",
              "value": "25"
            }
          ],
          "raw": "{{base_url}}/v1/sec/insider-trades?ticker=MSFT&limit=25"
        }
      }
    },
    {
      "name": "Filing summary",
      "request": {
        "description": "Resolve one filing by accession number and return normalized metadata.",
        "header": [
          {
            "key": "x-rapidapi-host",
            "value": "{{rapidapi_host}}"
          },
          {
            "key": "x-rapidapi-key",
            "value": "{{rapidapi_key}}"
          }
        ],
        "method": "GET",
        "url": {
          "host": [
            "{{base_url}}"
          ],
          "path": [
            "v1",
            "sec",
            "forms",
            "0001214659-26-008121",
            "summary"
          ],
          "query": [],
          "raw": "{{base_url}}/v1/sec/forms/0001214659-26-008121/summary"
        }
      }
    }
  ],
  "variable": [
    {
      "key": "base_url",
      "value": "https://sec-event-intelligence.p.rapidapi.com"
    },
    {
      "key": "rapidapi_host",
      "value": "sec-event-intelligence.p.rapidapi.com"
    },
    {
      "key": "rapidapi_key",
      "value": "replace-with-rapidapi-key"
    }
  ]
}