getProductsStats method

Future<Response> getProductsStats()

Not a documented endpoint but returns pricing data for all trading pairs at that point in time

{ "ETH-BTC":{ "stats_30day":{ "volume":"311024.55212641" }, "stats_24hour":{ "open":"0.0723", "high":"0.07455", "low":"0.07163", "volume":"62.43255831", "last":"0.0726" } }, }

Implementation

Future<http.Response> getProductsStats() async =>
    get(path: '/products/stats');