ExchangesImp..::..GetExchangeAsync Method
Get exchange volume in BTC and top 100 tickers only.
Namespace:
CoinGeckoAPI.ImpsIMPORTANT:
* Ticker object is limited to 100 items, to get more tickers, use GetExchangeTickersAsync(String, IEnumerable<(Of <<'(String>)>>), Boolean, UInt32, Boolean, CoinTickersOrderBy)
* Ticker is_stale is true when ticker that has not been updated/unchanged from the exchange for a while
* Ticker is_anomaly is true if ticker's price is outliered by our system
* You are responsible for managing how you want to display these information (e.g. footnote, different background, change opacity, hide)
Assembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
public Task<ExchangeResponse> GetExchangeAsync( string id )
Public Function GetExchangeAsync ( _ id As String _ ) As Task(Of ExchangeResponse)
Parameters
- id
- Type: String
The exchange id (can be obtained from GetExchangesListAsync()()()()).
Return Value
A Task<ExchangeResponse> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid exchange id (EX: bitstamp) |