예제 #1
0
 /// <summary>
 /// Get a paginated list of all cryptocurrencies with market data for a given historical time. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public Response <List <CryptocurrencyWithHistoricalQuote> > GetHistoricalListings(ListingHistoricalParameters request)
 {
     return(GetHistoricalListingsAsync(request, CancellationToken.None).Result);
 }
예제 #2
0
 /// <summary>
 /// Get a paginated list of all cryptocurrencies with market data for a given historical time. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public async Task <Response <List <CryptocurrencyWithHistoricalQuote> > > GetHistoricalListingsAsync(ListingHistoricalParameters request, CancellationToken cancellationToken)
 {
     return(await SendApiRequest <List <CryptocurrencyWithHistoricalQuote> >(request, "cryptocurrency/listings/historical", cancellationToken));
 }