🖥️
API documentation
  • ⚡Quickstart
  • ⚙️API Keys Request
  • API documentation
    • Authorize wallet
    • Get Supported Networks
    • Get Supported Assets for Networks
    • Get Limits for Bridge Order
    • Fee Estimation for Bridge Order
    • Create Bridge Order
      • Direct transfer to hot-wallet from user address
      • Transfer with Router Contract
    • Bridge Order Monitoring
  • Metadata
    • Supported networks
    • Supported assets
    • Network types
    • Transaction statuses
    • Router contracts
Powered by GitBook
On this page
  1. API documentation

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

Name
Type
Description

source_chain*

string

Name of source chain.

destination_chain*

string

Name of destination chain.

{
  "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
        }
      ]
    }
  ]
}
PreviousGet Supported NetworksNextGet Limits for Bridge Order

Last updated 10 months ago

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

fee