Stock Market Most Gainers API


OVERVIEW
The biggest percentage change in supported stocks returns the most gainers. As fields, it returns the ticker, name, change, and percentage change. There's a reason those stocks are rising, and you'll probably find it on our news endpoint.

We also support the greatest percentage change in the negative direction. You can check out our most losers endpoint if you're interested.

Stock Market Most Gainers API


OVERVIEW
The biggest percentage change in supported stocks returns the most gainers. As fields, it returns the ticker, name, change, and percentage change. There's a reason those stocks are rising, and you'll probably find it on our news endpoint.

We also support the greatest percentage change in the negative direction. You can check out our most losers endpoint if you're interested.

Stock Market Most Gainers

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

curl https://financialmodelingprep.com/api/v3/stock_market/gainers
[ {
    "symbol" : "SGLY",
    "name" : "Singularity Future Technology Ltd.",
    "change" : 1.03,
    "price" : 5.01,
    "changesPercentage" : 25.8794
  }, {
    "symbol" : "MDVL",
    "name" : "MedAvail Holdings, Inc",
    "change" : 0.31,
    "price" : 1.58,
    "changesPercentage" : 24.409454
  }, {
    "symbol" : "BBIG",
    "name" : "Vinco Ventures, Inc.",
    "change" : 0.65,
    "price" : 3.53,
    "changesPercentage" : 22.569439
  }, {
    "symbol" : "AMPGW",
    "name" : "AmpliTech Group, Inc.",
    "change" : 0.2799,
    "price" : 1.5999,
    "changesPercentage" : 21.204542
  }, {
    "symbol" : "DAVE",
    "name" : "Dave Inc.",
    "change" : 0.99,
    "price" : 6.19,
    "changesPercentage" : 19.038467
  }, ...
]

STOCK_MARKET_MOST_GAINERS_WITH JAVA


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