CoinsContractImp..::..GetCoinContractMarketChartAsync Method
Get historical market data include price, market cap, and 24h volume (granularity auto).
Namespace:
CoinGeckoAPI.ImpsAssembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
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
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.) |
ArgumentOutOfRangeException | days - Invalid value. Value must not exceed 900000. |