AssetsImp..::..GetAssetsAsync Method

Get assets as an asynchronous operation.

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

Syntax


public Task<AssetsResponse> GetAssetsAsync(
	string search,
	IEnumerable<string> ids,
	uint limit,
	uint offset
)
Public Function GetAssetsAsync ( _
	search As String, _
	ids As IEnumerable(Of String), _
	limit As UInteger, _
	offset As UInteger _
) As Task(Of AssetsResponse)

Parameters

search
Type: String
Search by asset id (bitcoin) or symbol (BTC).
ids
Type: IEnumerable<(Of <(<'String>)>)>
Query with multiple ids (bitcoin,ethereum,monero).
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<AssetsResponse> representing the asynchronous operation.