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"
}, ...
]
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);
}
}