SimpleImp..::..GetTokenPriceAsync Method
Get current price of tokens (using contract addresses) for a given platform in any other currency that you need.
Namespace:
CoinGeckoAPI.ImpsAssembly: CoinGeckoAPI (in CoinGeckoAPI.dll)
Syntax
public Task<Dictionary<string, Dictionary<string, decimal>>> GetTokenPriceAsync( string id, IEnumerable<string> contract_addresses, IEnumerable<string> vs_currencies, bool include_market_cap, bool include_24hr_vol, bool include_24hr_change, bool include_last_updated_at, uint precision )
Public Function GetTokenPriceAsync ( _ id As String, _ contract_addresses As IEnumerable(Of String), _ vs_currencies As IEnumerable(Of String), _ include_market_cap As Boolean, _ include_24hr_vol As Boolean, _ include_24hr_change As Boolean, _ include_last_updated_at As Boolean, _ precision As UInteger _ ) As Task(Of Dictionary(Of String, Dictionary(Of String, Decimal)))
Parameters
- id
- Type: String
The id of the platform issuing tokens. GetAssetPlatformsAsync(String).
- contract_addresses
- Type: IEnumerable<(Of <(<'String>)>)>
The contract addresses of the tokens.
- vs_currencies
- Type: IEnumerable<(Of <(<'String>)>)>
The target currency of market data (usd, eur, jpy, etc.). See GetSupportedVSCurrenciesAsync()()()().
- include_market_cap
- Type: Boolean
Set to true to include market cap data in the response.
- include_24hr_vol
- Type: Boolean
Set to true to include 24HR vol data in the response.
- include_24hr_change
- Type: Boolean
Set to true to include 24HR change data in the response.
- include_last_updated_at
- Type: Boolean
Set to true to include last updated at value in the response.
- precision
- Type: UInt32
Any value 0 through 18 to specify decimal place for currency price value. Default: 2.
Return Value
A Task<Dictionary<string, Dictionary<string, decimal>>> representing the asynchronous operation.Exceptions
Exception | Condition |
---|---|
ArgumentNullException | id - Invalid value. Value must be a valid id of the platform issuing tokens (See asset_platforms endpoint for list of options) |
ArgumentOutOfRangeException | precision - Value must be 0 through 18 |