Exemple #1
0
 /// <summary>
 /// Lists all market pairs for the specified cryptocurrency with associated stats. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public async Task <Response <MarketPairLatestResponse> > GetMarketPairLatestAsync(MarketPairsLatestParameters request, CancellationToken cancellationToken)
 {
     return(await SendApiRequest <MarketPairLatestResponse>(request, "cryptocurrency/market-pairs/latest", cancellationToken));
 }
Exemple #2
0
 /// <summary>
 /// Lists all market pairs for the specified cryptocurrency with associated stats. Use the "convert" option to return market values in multiple fiat and cryptocurrency conversions in the same call.
 /// </summary>
 public Response <MarketPairLatestResponse> GetMarketPairLatest(MarketPairsLatestParameters request)
 {
     return(GetMarketPairLatestAsync(request, CancellationToken.None).Result);
 }