MarketsImp..::..GetMarketsAsync Method

Get markets as an asynchronous operation.

Namespace:  CoinCapApi.Imp
Assembly:  CoinCapApi (in CoinCapApi.dll)

Syntax


public Task<MarketsResponse> GetMarketsAsync(
	string exchangeId,
	string baseSymbol,
	string quoteSymbol,
	string baseId,
	string quoteId,
	string assetSymbol,
	string assetId,
	uint limit,
	uint offset
)
Public Function GetMarketsAsync ( _
	exchangeId As String, _
	baseSymbol As String, _
	quoteSymbol As String, _
	baseId As String, _
	quoteId As String, _
	assetSymbol As String, _
	assetId As String, _
	limit As UInteger, _
	offset As UInteger _
) As Task(Of MarketsResponse)

Parameters

exchangeId
Type: String
Filters by exchange id.
baseSymbol
Type: String
Filters by all markets containing the base symbol.
quoteSymbol
Type: String
Filters by all markets containing the quote symbol.
baseId
Type: String
Filters by all markets containing the base id.
quoteId
Type: String
Filters by all markets containing the quote id.
assetSymbol
Type: String
Filters by all markets containing symbol (base and quote).
assetId
Type: String
Filters by all markets containing id (base and quote).
limit
Type: UInt32
The number of items to retrieve. Default: 100 Max: 2000.
offset
Type: UInt32
The number of items to skip (aka offset).

Return Value

A Task<MarketsResponse> representing the asynchronous operation.