Skip to main content

List Assets

GET 

/v1/wallet/assets

List assets available for deposit or withdrawal.

Requires authentication.

Request

Query Parameters

    asset_group string

    An optional grouping of similar assets.

    name string

    This filter act as a database "like", returning all assets whose name matches partially with this filter.

    networks.name string

    Network identification.

    networks.address_enabled boolean

    If it is enabled to generate address on this network.

    networks.deposit_enabled boolean

    If it is enabled to receive deposits on this network.

    networks.withdrawal_enabled boolean

    If it is enabled to make withdrawals on this network.

    limit integer

    Possible values: non-empty and <= 200 characters, >= 1 and <= 200

    Default value: 20

    Max number of objects to be returned as result of request.

    cursor string

    A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.

Responses

OK

Schema
    result object[]
  • Array [
  • id string

    Asset identification.

    name string

    Asset full name.

    asset_group string

    An optional grouping of similar assets.

    networks object[]

    List of distinct networks where this asset is placed.

  • Array [
  • name string

    Network identification.

    min_confirmations integer

    Minimum number of blocks added to the blockchain along with your transaction.

    blockchain_tag_name string

    'memo' or 'destination_tag' used in some networks.

    address_enabled boolean

    If is enabled to generate address on this network.

    deposit_enabled boolean

    If it is enabled to receive deposits on this network.

    withdrawal_enabled boolean

    If it is enabled to make withdrawals on this network.

    withdrawal_min_usd string

    Minimum USD amount to make a withdrawal.

    withdrawal_max_usd string

    Maximum USD amount permited to withdrawal for each 'withdrawal_max_interval'.

    withdrawal_max_interval integer

    Interval time to wait to be able to make a new withdrawal after reaching the value defined at 'withdrawal_max_usd', in hours.

  • ]
  • ]
Loading...