AssetsImp..::..GetAssetMarketsAsync Method

Get asset markets as an asynchronous operation.

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

Syntax


public Task<AssetMarketsResponse> GetAssetMarketsAsync(
	string id,
	uint limit,
	uint offset
)
Public Function GetAssetMarketsAsync ( _
	id As String, _
	limit As UInteger, _
	offset As UInteger _
) As Task(Of AssetMarketsResponse)

Parameters

id
Type: String
The unique identifier of the asset.
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<AssetMarketsResponse> representing the asynchronous operation.

Exceptions


ExceptionCondition
ArgumentNullExceptionid - Null or invalid value, id must be a valid asset id.