Historical Dow Jones stock List API


OVERVIEW
This endpoint keeps track of securities that have been removed or added to the Dow Jones index, which is one of the largest in the world.

You can also check other historical changes to S&P 500 and Nasdaq.

Historical Dow Jones stock List API


OVERVIEW
This endpoint keeps track of securities that have been removed or added to the Dow Jones index, which is one of the largest in the world.

You can also check other historical changes to S&P 500 and Nasdaq.

Historical Dow Jones stock List

https://financialmodelingprep.com/api/v3/historical/dowjones_constituent?apikey=YOUR_API_KEY

curl https://financialmodelingprep.com/api/v3/historical/dowjones_constituent?apikey=YOUR_API_KEY
[ 
  {
    "dateAdded" : "August 31, 2020",
    "addedSecurity" : "Salesforce.Com Inc",
    "removedTicker" : "",
    "removedSecurity" : "",
    "date" : "2020-08-31",
    "reason" : "Market capitalization change.",
    "symbol" : "CRM"
  }, {
    "dateAdded" : "August 31, 2020",
    "addedSecurity" : "",
    "removedTicker" : "RTX",
    "removedSecurity" : "Raytheon Technologies Corp",
    "date" : "2020-08-31",
    "reason" : "Market capitalization change",
    "symbol" : "RTX"
  }, ...
]

HISTORICAL_DOW_JONES_STOCK_LIST_WITH JAVA


URL url = new URL("https://financialmodelingprep.com/api/v3/historical/dowjones_constituent?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 :