Exemple #1
0
 /// <summary>
 /// Returns a paginated list of all cryptocurrencies by CoinMarketCap ID. We recommend using this convenience endpoint to lookup and utilize our unique cryptocurrency id across all endpoints as typical identifiers like ticker symbols can match multiple cryptocurrencies and change over time. As a convenience you may pass a comma-separated list of cryptocurrency symbols as symbol to filter this list to only those you require.
 /// </summary>
 public Response <List <IdMap> > GetCryptocurrencyIdMap(IdMapParameters request)
 {
     return(GetCryptocurrencyIdMapAsync(request, CancellationToken.None).Result);
 }
Exemple #2
0
 /// <summary>
 /// Returns a paginated list of all cryptocurrencies by CoinMarketCap ID. We recommend using this convenience endpoint to lookup and utilize our unique cryptocurrency id across all endpoints as typical identifiers like ticker symbols can match multiple cryptocurrencies and change over time. As a convenience you may pass a comma-separated list of cryptocurrency symbols as symbol to filter this list to only those you require.
 /// </summary>
 public async Task <Response <List <IdMap> > > GetCryptocurrencyIdMapAsync(IdMapParameters request, CancellationToken cancellationToken)
 {
     return(await SendApiRequest <List <IdMap> >(request, "cryptocurrency/map", cancellationToken));
 }