I am using the following code in my script:
var urlAllCurrencyPairsPrice ="https://api.binance.com/api/v1/ticker/24hr";
var allPairs = UrlFetchApp.fetch(urlAllCurrencyPairsPrice);
var jsonAllPairs = JSON.parse(allPairs);
Since Google uses shared IP address, I receive an error message from Binance server stating that I have exceeded the request limit. I sent a ticket, they answered that I need an exclusive IP address. How can I obtain and use it in Google App Script?