Skip to main content
GET
/
wallets
/
{wallet_id}
/
max_transferable_value
import cobo_waas2
from cobo_waas2.models.max_transferable_value import MaxTransferableValue
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.WalletsApi(api_client)
    wallet_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
    token_id = "ETH_USDT"
    fee_rate = "10"
    to_address = "2N2xFZtbCFB6Nb3Pj9Sxsx5mX2fxX3yEgkE"
    from_address = "2N2xFZtbCFB6Nb3Pj9Sxsx5mX2fxX3yEgkE"

    try:
        # Get maximum transferable value
        api_response = api_instance.get_max_transferable_value(
            wallet_id, token_id, fee_rate, to_address, from_address=from_address
        )
        print("The response of WalletsApi->get_max_transferable_value:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WalletsApi->get_max_transferable_value: %s\n" % e)

{
  "token_id": "ETH",
  "max_transferable_value": "3.0",
  "fee": {
    "fee_type": "EVM_EIP_1559",
    "token_id": "TRON",
    "max_fee_amount": "0.1"
  }
}
import cobo_waas2
from cobo_waas2.models.max_transferable_value import MaxTransferableValue
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.WalletsApi(api_client)
    wallet_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
    token_id = "ETH_USDT"
    fee_rate = "10"
    to_address = "2N2xFZtbCFB6Nb3Pj9Sxsx5mX2fxX3yEgkE"
    from_address = "2N2xFZtbCFB6Nb3Pj9Sxsx5mX2fxX3yEgkE"

    try:
        # Get maximum transferable value
        api_response = api_instance.get_max_transferable_value(
            wallet_id, token_id, fee_rate, to_address, from_address=from_address
        )
        print("The response of WalletsApi->get_max_transferable_value:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling WalletsApi->get_max_transferable_value: %s\n" % e)

Authorizations

BIZ-API-KEY
string
header
required

The API key. For more details, refer to API key.

In the API playground, enter your API secret, and your API key will be accordingly calculated.

Path Parameters

wallet_id
string<uuid>
required

The wallet ID.

Query Parameters

token_id
string
required

The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling List enabled tokens.

fee_rate
string
required

The fee rate in sats/vByte or gas price in wei.

to_address
string
required

The recipient's address.

from_address
string

The sender's address. For EVM addresses in MPC Wallets, this parameter is required.

Response

The request was successful.

The maximum transferable value from the wallet or the specified address, along with the estimated transaction fee.

token_id
string

The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling List enabled tokens.

Example:

"ETH"

max_transferable_value
string

The maximum transferable value from the wallet or the specified address.

Example:

"3.0"

fee
object

The preset properties to limit transaction fee.

In the fixed fee model, the transaction fee is a fixed amount within a certain amount of period regardless of the transaction size or network congestion, which can vary between different chains. For more information about the fixed fee model, refer to Fee models.

You can specify the maximum fee amount to limit the transaction fee. The transaction will fail if the transaction fee exceeds the specified maximum fee amount.

Switch between the tabs to display the properties for different transaction fee models.

  • Fixed
  • EVM_EIP_1559
  • EVM_Legacy
  • UTXO
  • SOL
  • FIL