The Nasdaq 100 stock market index API


OVERVIEW
Returns Companies in the Nasdaq 100, such as DocuSign and Zoom.

On this endpoint page, you can also find endpoint covering S&P 500 companies.

Query String Parameters
datatype : csv

The Nasdaq 100 stock market index API


OVERVIEW
Returns Companies in the Nasdaq 100, such as DocuSign and Zoom.

On this endpoint page, you can also find endpoint covering S&P 500 companies.

Query String Parameters
datatype : csv

The Nasdaq 100 stock market index

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

curl https://financialmodelingprep.com/api/v3/nasdaq_constituent?apikey=YOUR_API_KEY
[ 
  {
    "symbol" : "DOCU",
    "name" : "DocuSign Inc",
    "sector" : "Technology",
    "subSector" : "Technology",
    "headQuarter" : "San Francisco, CALIFORNIA",
    "dateFirstAdded" : "2020-06-22",
    "cik" : "0001261333",
    "founded" : "2018-04-27"
  }, {
    "symbol" : "ZM",
    "name" : "Zoom Video Communications Inc",
    "sector" : "Communication Services",
    "subSector" : "Communication Services",
    "headQuarter" : "San Jose, CALIFORNIA",
    "dateFirstAdded" : "2020-04-30",
    "cik" : "0001585521",
    "founded" : "2019-04-18"
  }, {
    "symbol" : "DXCM",
    "name" : "DexCom Inc",
    "sector" : "Healthcare",
    "subSector" : "Healthcare",
    "headQuarter" : "San Diego, CALIFORNIA",
    "dateFirstAdded" : "2020-04-20",
    "cik" : "0001093557",
    "founded" : "2005-04-14"
  }, ...
]

THE_NASDAQ_100_STOCK_MARKET_INDEX_WITH JAVA


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