CoinsImp..::..GetCoinAsync Method
Get current data (name, price, market, ... including exchange tickers) for a coin.
IMPORTANT:
Ticker object is limited to 100 items, to get more tickers, use GetCoinTickersAsync(String, IEnumerable<(Of <<'(String>)>>), Boolean, UInt32, CoinTickersOrderBy, Boolean). Ticker is_stale is true when ticker 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
Parameters
- id
- Type: String
The id of the coin cryptocurrency. See GetCoinsListAsync(Boolean).
- localization
- Type: Boolean
Set to true to include all localized languages in response.
- tickers
- Type: Boolean
Set to true to include tickers data in response.
- market_data
- Type: Boolean
Set to true to include market data in response.
- community_data
- Type: Boolean
Set to true to include community data in response.
- developer_data
- Type: Boolean
Set to true to include developer data in response.
- sparkline
- Type: Boolean
Set to true to include sparkline 7 dats data in response.
Return Value
A Task<CoinResponse> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid coin id (EX: bitcoin, ethereum) |