curl --request GET \
--url https://api.skip.build/v2/info/chains{
"chains": [
{
"chain_name": "cosmoshub",
"chain_id": "cosmoshub-4",
"pfm_enabled": true,
"cosmos_module_support": {
"authz": true,
"feegrant": true
},
"supports_memo": true,
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"bech32_prefix": "cosmos",
"fee_assets": [
{
"denom": "uatom",
"gas_price": {
"low": "0.01",
"average": "0.025",
"high": "0.03"
}
}
],
"chain_type": "cosmos",
"ibc_capabilities": {
"cosmos_pfm": true,
"cosmos_ibc_hooks": true,
"cosmos_memo": true,
"cosmos_autopilot": true
},
"is_testnet": false,
"pretty_name": "Cosmos Hub"
},
{
"chain_name": "osmosis",
"chain_id": "osmosis-1",
"pfm_enabled": true,
"cosmos_module_support": {
"authz": true,
"feegrant": true
},
"supports_memo": true,
"bech32_prefix": "osmo",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png",
"fee_assets": [
{
"denom": "uosmo",
"gas_price": {
"low": "0.0025",
"average": "0.025",
"high": "0.04"
}
}
],
"chain_type": "cosmos",
"ibc_capabilities": {
"cosmos_pfm": true,
"cosmos_ibc_hooks": true,
"cosmos_memo": true,
"cosmos_autopilot": true
},
"is_testnet": false,
"pretty_name": "Osmosis"
}
]
}Get all supported chains along with additional data useful for building applications + frontends that interface with them (e.g. logo URI, IBC capabilities, fee assets, bech32 prefix, etc…)
curl --request GET \
--url https://api.skip.build/v2/info/chains{
"chains": [
{
"chain_name": "cosmoshub",
"chain_id": "cosmoshub-4",
"pfm_enabled": true,
"cosmos_module_support": {
"authz": true,
"feegrant": true
},
"supports_memo": true,
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png",
"bech32_prefix": "cosmos",
"fee_assets": [
{
"denom": "uatom",
"gas_price": {
"low": "0.01",
"average": "0.025",
"high": "0.03"
}
}
],
"chain_type": "cosmos",
"ibc_capabilities": {
"cosmos_pfm": true,
"cosmos_ibc_hooks": true,
"cosmos_memo": true,
"cosmos_autopilot": true
},
"is_testnet": false,
"pretty_name": "Cosmos Hub"
},
{
"chain_name": "osmosis",
"chain_id": "osmosis-1",
"pfm_enabled": true,
"cosmos_module_support": {
"authz": true,
"feegrant": true
},
"supports_memo": true,
"bech32_prefix": "osmo",
"logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png",
"fee_assets": [
{
"denom": "uosmo",
"gas_price": {
"low": "0.0025",
"average": "0.025",
"high": "0.04"
}
}
],
"chain_type": "cosmos",
"ibc_capabilities": {
"cosmos_pfm": true,
"cosmos_ibc_hooks": true,
"cosmos_memo": true,
"cosmos_autopilot": true
},
"is_testnet": false,
"pretty_name": "Osmosis"
}
]
}Chain IDs to limit the response to, defaults to all chains if not provided
Whether to include EVM chains in the response
Whether to include SVM chains in the response
Whether to display only testnets in the response
Returns a list of supported chains with additional data
Array of supported chain-ids
Show child attributes
Name of the chain
Chain-id of the chain
Whether the PFM module is enabled on the chain
Whether the chain supports IBC memos
Bech32 prefix of the chain
Fee assets of the chain
Show child attributes
Type of chain, e.g. "cosmos" or "evm"
cosmos, evm, svm IBC capabilities of the chain
Show child attributes
Whether the packet forwarding middleware module is supported
Whether the ibc hooks module is supported
Whether the chain supports IBC memos
Whether the autopilot module is supported
Whether the chain is a testnet
User friendly name of the chain
chain logo URI
Was this page helpful?