CoinsImp..::..GetCoinMarketChartAsync Method

Get historical market data include price, market cap, and 24h volume (granularity auto).

* Data granularity is automatic (cannot be adjusted)

* 1 day from current time = 5 minute interval data

* 1 - 90 days from current time = hourly data

* above 90 days from current time = daily data(00:00 UTC)

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

Syntax


public Task<CoinMarketChartResponse> GetCoinMarketChartAsync(
	string id,
	string vs_currency,
	uint days,
	CoinMarketChartInterval interval
)
Public Function GetCoinMarketChartAsync ( _
	id As String, _
	vs_currency As String, _
	days As UInteger, _
	interval As CoinMarketChartInterval _
) As Task(Of CoinMarketChartResponse)

Parameters

id
Type: String
The id of the coin cryptocurrency. See GetCoinsListAsync(Boolean).
vs_currency
Type: String
The target currency of market data (usd, eur, jpy, etc.). See GetSupportedVSCurrenciesAsync()()()().
days
Type: UInt32
Data up to number of days ago (eg. 1,14,30,max).
interval
Type: CoinGeckoAPI.Types..::..CoinMarketChartInterval
The interval (granularity CoinMarketChartInterval).

Return Value

A Task<CoinMarketChartResponse> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptionid - Invalid value. Value must be a valid coin id (EX: bitcoin, ethereum)
ArgumentNullExceptionvs_currency - Invalid value. Value must be a valid target currency of market data (usd, eur, jpy, etc.)
ArgumentOutOfRangeExceptiondays - Invalid value. Value must not exceed 900000.