I am building an application to fetch the list of all trades from Binance API. The /api/v3/myTrades
API expects a symbol
parameter in the API request which is basically the trading pair (E.g. BTCUSD, ETHBTC etc). Currently, there are about 1200+ trading pairs.
It is quite a time taking process to get the list of all trades by calling the /api/v3/myTrades
API repeatedly for each and every trading pairs following the API rate limits enforced by Binance API.
Is there any better/faster/efficient way to get the list of trades?