CoinsContractImp..::..GetCoinContractMarketChartAsync Method

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

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

Syntax


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

Parameters

id
Type: String
The id of the platform issuing tokens (see GetAssetPlatformsAsync(String) endpoint for list of options).
contract_address
Type: String
The token's contract address.
vs_currency
Type: String
The target currency of market data (usd, eur, jpy, etc.).
days
Type: UInt32
Data up to number of days ago (eg. 1,14,30,max).

Return Value

A Task<CoinMarketChartResponse> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptionid - Invalid value. Value must be a valid coin id (EX: ethereum)
ArgumentNullExceptioncontract_address - Invalid value. Value must be a valid contract address (EX: 0x514910771af9ca656af840dff83e8264ecf986ca)
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.