CoinsContractImp..::..GetCoinContractMarketChartRangeAsync Method
Get historical market data include price, market cap, and 24h volume within a range of timestamp (granularity auto).
Namespace:
CoinGeckoAPI.ImpsAssembly: 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
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid coin id (EX: ethereum) |
ArgumentNullException | contract_address - Invalid value. Value must be a valid contract address (EX: 0x514910771af9ca656af840dff83e8264ecf986ca) |
ArgumentNullException | vs_currency - Invalid value. Value must be a valid target currency of market data (usd, eur, jpy, etc.) |