Example #1
0
 public async Task<MarketChartById> GetMarketChartRangeByCoinId(string id, string vsCurrency, string @from, string to)
 {
     return await GetAsync<MarketChartById>(QueryStringService.AppendQueryString(
         CoinsApiEndPoints.MarketChartRangeByCoinId(id), new Dictionary<string, object>
         {
             {"vs_currency", string.Join(",", vsCurrency)},
             {"from",from},
             {"to",to}
         })).ConfigureAwait(false);
 }