CoinsContractImp..::..GetCoinContractMarketChartRangeAsync Method

Get historical market data include price, market cap, and 24h volume within a range of timestamp (granularity auto).

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

Syntax


public Task<CoinMarketChartResponse> GetCoinContractMarketChartRangeAsync(
	string id,
	string contract_address,
	string vs_currency,
	DateTimeOffset fromDate,
	DateTimeOffset toDate
)
Public Function GetCoinContractMarketChartRangeAsync ( _
	id As String, _
	contract_address As String, _
	vs_currency As String, _
	fromDate As DateTimeOffset, _
	toDate As DateTimeOffset _
) 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.).
fromDate
Type: DateTimeOffset
From date.
toDate
Type: DateTimeOffset
To date.

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