Insider Trading RSS Feed API


OVERVIEW
This is an RSS feed for all market insider trading. It returns the most recent SEC Form 3, 4, and 5 filings, along with a link to the filing, the date, and other information. Go to our insider trading endpoint if you want to see all insider trading for a specific company. Every few minutes, all of the feed is processed. You can tell what type of form it is by looking at the title. For example, "4 -..." indicates that it is form 4.

If you're looking for SEC filings for specific companies, check out our SEC filing endpoint.

Query String Parameters
page : Number

Insider Trading RSS Feed API


OVERVIEW
This is an RSS feed for all market insider trading. It returns the most recent SEC Form 3, 4, and 5 filings, along with a link to the filing, the date, and other information. Go to our insider trading endpoint if you want to see all insider trading for a specific company. Every few minutes, all of the feed is processed. You can tell what type of form it is by looking at the title. For example, "4 -..." indicates that it is form 4.

If you're looking for SEC filings for specific companies, check out our SEC filing endpoint.

Query String Parameters
page : Number

Insider Trading RSS Feed

https://financialmodelingprep.com/api/v4/insider-trading-rss-feed?page=0&apikey=YOUR_API_KEY

curl https://financialmodelingprep.com/api/v4/insider-trading-rss-feed?page=0&apikey=YOUR_API_KEY
[ 
  {
    "title" : "4 - GEOSPACE TECHNOLOGIES CORP (0001001115) (Issuer)",
    "fillingDate" : "2021-02-05",
    "symbol" : "GEOS",
    "link" : "https://www.sec.gov/Archives/edgar/data/1001115/000120919121008025/0001209191-21-008025-index.htm",
    "issuerCik" : "0001001115",
    "reportingCik" : "0001049658"
  }, {
    "title" : "4 - M.D.C. HOLDINGS, INC. (0000773141) (Issuer)",
    "fillingDate" : "2021-02-05",
    "symbol" : "MDC",
    "link" : "https://www.sec.gov/Archives/edgar/data/773141/000100987421000008/0001009874-21-000008-index.htm",
    "issuerCik" : "0000773141",
    "reportingCik" : "0001009874"
  }, {
    "title" : "4 - CytoDyn Inc. (0001175680) (Issuer)",
    "fillingDate" : "2021-02-05",
    "symbol" : "CYDY",
    "link" : "https://www.sec.gov/Archives/edgar/data/1175680/000180709421000001/0001807094-21-000001-index.htm",
    "issuerCik" : "0001175680",
    "reportingCik" : "0001703394"
  }, ...
]

INSIDER_TRADING_RSS_FEED_WITH JAVA


URL url = new URL("https://financialmodelingprep.com/api/v4/insider-trading-rss-feed?page=0&apikey=YOUR_API_KEY");

try (BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8"))) {
    for (String line; (line = reader.readLine()) != null;) {
    System.out.println(line);
  }
}
Resource List :