Get Supported Assets for Networks

To enable effective asset transfers, our API offers a feature to identify assets available for bridging between specified source and destination networks. This function is vital for users to understand which tokens or cryptocurrencies can be transferred, ensuring transparent and strategic planning for cross-network transactions.

Retrieves the list of available assets to be bridged between source and destination chains.

GET /api/assets

Query Parameters

{
  "message": "string",
  "data": [
    {
      "name": "string", // Asset in source chain name ex. "USDT"
      "native": true,  // indicates whether asset is native or a token
      "contract_address": "string",  // smart contract address (can be null)
      "active": true,  // indicates whether asset is accessible at the moment​
      "pairs": [ // List of asset's pairs in the destination network 
        {
          "name": "string",
          "native": true,
          "contract_address": "string",
          "active": true
        }
      ]
    }
  ]
}

After assets for bridging were selected, fee can be estimated for bridge order.

Last updated