IndexesImp..::..GetIndexAsync Method

Get market index by market id and index id.

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

Syntax


public Task<IndexItem> GetIndexAsync(
	string market_id,
	string id
)
Public Function GetIndexAsync ( _
	market_id As String, _
	id As String _
) As Task(Of IndexItem)

Parameters

market_id
Type: String
The market id (can be obtained from GetExchangesListAsync()()()()).
id
Type: String
The index id (can be obtained from GetIndexesListAsync()()()()).

Return Value

A Task<IndexItem> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptionmarket_id - Invalid value. Value must be a valid market id (EX: cme_futures)
ArgumentNullExceptionid - Invalid value. Value must be a valid index id (EX: btc)