Post /v2/fungible/assets_between_chains
Given 2 chain IDs, returns a list of equivalent assets that can be transferred
Chain-id of the source chain
Chain-id of the destination chain
Whether to include assets without metadata (symbol, name, logo_uri, etc.)
Whether to include CW20 tokens
Whether to include EVM tokens
Whether to include recommendations requiring multiple transactions to reach the destination
curl --request POST \
--url https://api.skip.build/v2/fungible/assets_between_chains \
--header 'Content-Type: application/json' \
--data '{
"source_chain_id": "cosmoshub-4",
"dest_chain_id": "osmosis-1"
}'
{
"assets_between_chains": [
{
"asset_on_source": {
"denom": "uatom",
"chain_id": "cosmoshub-4",
"origin_denom": "uatom",
"origin_chain_id": "cosmoshub-4",
"trace": "",
"is_cw20": false,
"is_evm": false,
"symbol": "ATOM",
"name": "ATOM",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"decimals": 6,
"description": "The native staking and governance token of the Cosmos Hub.",
"coingecko_id": "cosmos",
"recommended_symbol": "ATOM"
},
"asset_on_dest": {
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"chain_id": "osmosis-1",
"origin_denom": "uatom",
"origin_chain_id": "cosmoshub-4",
"trace": "transfer/channel-0",
"is_cw20": false,
"is_evm": false,
"symbol": "ATOM",
"name": "ATOM",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"decimals": 6,
"description": "The native staking and governance token of the Cosmos Hub.",
"coingecko_id": "cosmos",
"recommended_symbol": "ATOM"
},
"txs_required": 1,
"bridges": [
"IBC"
]
}
]
}
Body
Chain-id of the source chain
Chain-id of the destination chain
Whether to include assets without metadata (symbol, name, logo_uri, etc.)
Whether to include CW20 tokens
Whether to include EVM tokens
Whether to include recommendations requiring multiple transactions to reach the destination
Response
Chain-id of the asset
Coingecko id of the asset
Number of decimals used for amounts of the asset
Denom of the asset
Description of the asset
Indicates whether asset is a CW20 token
Indicates whether asset is an EVM token
Indicates whether asset is an SVM token
URI pointing to an image of the logo of the asset
Name of the asset
Chain-id of the origin of the asset. If this is an ibc denom, this is the chain-id of the asset that the ibc token represents
Denom of the origin of the asset. If this is an ibc denom, this is the original denom that the ibc token represents
Recommended symbol of the asset used to differentiate between bridged assets with the same symbol, e.g. USDC.axl for Axelar USDC and USDC.grv for Gravity USDC
Symbol of the asset, e.g. ATOM for uatom
Address of the contract for the asset, e.g. if it is a CW20 or ERC20 token
The forward slash delimited sequence of ibc ports and channels that can be traversed to unwind an ibc token to its origin asset.
Chain-id of the asset
Coingecko id of the asset
Number of decimals used for amounts of the asset
Denom of the asset
Description of the asset
Indicates whether asset is a CW20 token
Indicates whether asset is an EVM token
Indicates whether asset is an SVM token
URI pointing to an image of the logo of the asset
Name of the asset
Chain-id of the origin of the asset. If this is an ibc denom, this is the chain-id of the asset that the ibc token represents
Denom of the origin of the asset. If this is an ibc denom, this is the original denom that the ibc token represents
Recommended symbol of the asset used to differentiate between bridged assets with the same symbol, e.g. USDC.axl for Axelar USDC and USDC.grv for Gravity USDC
Symbol of the asset, e.g. ATOM for uatom
Address of the contract for the asset, e.g. if it is a CW20 or ERC20 token
The forward slash delimited sequence of ibc ports and channels that can be traversed to unwind an ibc token to its origin asset.
Number of transactions required to transfer the asset
Bridges that are used to transfer the asset
IBC
, AXELAR
, CCTP
, HYPERLANE
curl --request POST \
--url https://api.skip.build/v2/fungible/assets_between_chains \
--header 'Content-Type: application/json' \
--data '{
"source_chain_id": "cosmoshub-4",
"dest_chain_id": "osmosis-1"
}'
{
"assets_between_chains": [
{
"asset_on_source": {
"denom": "uatom",
"chain_id": "cosmoshub-4",
"origin_denom": "uatom",
"origin_chain_id": "cosmoshub-4",
"trace": "",
"is_cw20": false,
"is_evm": false,
"symbol": "ATOM",
"name": "ATOM",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"decimals": 6,
"description": "The native staking and governance token of the Cosmos Hub.",
"coingecko_id": "cosmos",
"recommended_symbol": "ATOM"
},
"asset_on_dest": {
"denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2",
"chain_id": "osmosis-1",
"origin_denom": "uatom",
"origin_chain_id": "cosmoshub-4",
"trace": "transfer/channel-0",
"is_cw20": false,
"is_evm": false,
"symbol": "ATOM",
"name": "ATOM",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"decimals": 6,
"description": "The native staking and governance token of the Cosmos Hub.",
"coingecko_id": "cosmos",
"recommended_symbol": "ATOM"
},
"txs_required": 1,
"bridges": [
"IBC"
]
}
]
}