I am trying to make a site for crypto data using coin-gecko's API. They have 2 different end points for what i require and as such require 2 different URLs.
I had no problem using into the globalUrl to get data such as the total Market cap, volume, etc. which i was able to render into my ejs. My problem is now i cannot use the other URL for this, seeing as I cannot make another get request, what would be the best way to get data from the topCoinsUrl such as say the "id" of bitcoin from the 2nd url please
    const https = require('https');
    const app = express();
    
    app.get("/", function(req, res) {
    
      const globalUrl = "https://api.coingecko.com/api/v3/global";
      const topCoinsUrl = "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=100&page=1&sparkline=false&price_change_percentage=1h"
    
      https.get(globalUrl , function(response) {
       
        let data = "";
       
        response.on("data", function(chunk) {
          data += chunk
        });
        
        response.on("end", function() {
          const globalMarket = JSON.parse(data);
    
          const totalCryptocurrencies = globalMarket.data.active_cryptocurrencies
          let totalMarketCap = globalMarket.data.total_market_cap.usd
          let totalMarketCapUsd = totalMarketCap.toLocaleString('en-US', {
            style: 'currency',
            currency: 'USD',
          });
          let totalVolume = globalMarket.data.total_volume.usd
          let total24hVolume = totalVolume.toLocaleString('en-US', {
            style: 'currency',
            currency: 'USD',
          });
          let markets = globalMarket.data.markets
          let bitcoinMarketShare = Math.round(globalMarket.data.market_cap_percentage.btc);
    
          res.render("home", {
            totalCryptocurrencies: totalCryptocurrencies,
            totalMarketCap: totalMarketCapUsd,
            total24hVolume: total24hVolume,
            markets: markets,
            bitcoinMarketShare: bitcoinMarketShare
          });
    
        })
      
      }).on("error", function(error) {
        console.error(error)
      });
    });
// Ideally i would like to add this to get the ID of bitcoin, but I get an error when i try to use the 2 get requests:
https.get(topCoinsUrl, function(response) {
    let data = "";
    response.on("data", function(chunk) {
      data += chunk
    });
    response.on("end", function() {
      const topCoinsUrl = JSON.parse(data);
      let bitcoinId = topCoinsUrl[0].symbol
res.render("home", {
  bitcoinId: bitcoinId
})
    })
    // Error handler
  }).on("error", function(error) {
    console.error(error)
  });
});
 
    