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).

Namespace:  CoinGeckoAPI.Imps
Assembly:  CoinGeckoAPI (in CoinGeckoAPI.dll)

Syntax


public Task<CoinResponse> GetCoinAsync(
	string id,
	bool localization,
	bool tickers,
	bool market_data,
	bool community_data,
	bool developer_data,
	bool sparkline
)
Public Function GetCoinAsync ( _
	id As String, _
	localization As Boolean, _
	tickers As Boolean, _
	market_data As Boolean, _
	community_data As Boolean, _
	developer_data As Boolean, _
	sparkline As Boolean _
) As Task(Of CoinResponse)

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


ExceptionCondition
ArgumentNullExceptionid - Invalid value. Value must be a valid coin id (EX: bitcoin, ethereum)