Exemple #1
0
 /// <summary>
 /// Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public Response <List <CryptocurrencyWithLatestQuote> > GetLatestListings(ListingLatestParameters request)
 {
     return(GetLatestListingsAsync(request, CancellationToken.None).Result);
 }
Exemple #2
0
 /// <summary>
 /// Get a paginated list of all cryptocurrencies with latest market data. You can configure this call to sort by market cap or another market ranking field. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public async Task <Response <List <CryptocurrencyWithLatestQuote> > > GetLatestListingsAsync(ListingLatestParameters request, CancellationToken cancellationToken)
 {
     return(await SendApiRequest <List <CryptocurrencyWithLatestQuote> >(request, "cryptocurrency/listings/latest", cancellationToken));
 }