curl --request POST \
--url https://api.skip.build/v2/fungible/ibc_origin_assets \
--header 'Content-Type: application/json' \
--data '
{
"assets": [
{
"denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC",
"chain_id": "cosmoshub-4"
}
]
}
'{
"origin_assets": [
{
"asset": {
"denom": "uosmo",
"chain_id": "osmosis-1",
"origin_denom": "uosmo",
"origin_chain_id": "osmosis-1",
"trace": "",
"symbol": "OSMO",
"name": "OSMO",
"logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/osmo.png",
"decimals": 6,
"coingecko_id": "osmosis",
"description": "The native token of Osmosis"
},
"asset_found": true
}
]
}Get origin assets from a given list of denoms and chain IDs.
curl --request POST \
--url https://api.skip.build/v2/fungible/ibc_origin_assets \
--header 'Content-Type: application/json' \
--data '
{
"assets": [
{
"denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC",
"chain_id": "cosmoshub-4"
}
]
}
'{
"origin_assets": [
{
"asset": {
"denom": "uosmo",
"chain_id": "osmosis-1",
"origin_denom": "uosmo",
"origin_chain_id": "osmosis-1",
"trace": "",
"symbol": "OSMO",
"name": "OSMO",
"logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/osmo.png",
"decimals": 6,
"coingecko_id": "osmosis",
"description": "The native token of Osmosis"
},
"asset_found": true
}
]
}The origin assets of the specified denoms and chain IDs.
Show child attributes
Show child attributes
Denom of the asset
Chain-id of the asset
Denom of the origin of the asset. If this is an ibc denom, this is the original denom that the ibc token represents
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
The forward slash delimited sequence of ibc ports and channels that can be traversed to unwind an ibc token to its origin asset.
Indicates whether asset is a CW20 token
Indicates whether asset is an EVM token
Indicates whether asset is an SVM token
Symbol of the asset, e.g. ATOM for uatom
Name of the asset
URI pointing to an image of the logo of the asset
Number of decimals used for amounts of the asset
Address of the contract for the asset, e.g. if it is a CW20 or ERC20 token
Description of the asset
Coingecko id of the asset
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
Whether the asset was found
Was this page helpful?