Prod Endpoints
- Info
- Fungible
- Transaction
Get /v2/info/chains
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"
}
]
}
Query Parameters
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
Response
Array of supported chain-ids
Name of the chain
Chain-id of the chain
Whether the PFM module is enabled on the chain
Whether the chain supports IBC memos
chain logo URI
Bech32 prefix of the chain
Fee assets of the chain
Asset used to pay gas fees and the recommended price tiers. Assets and gas price recommendations are sourced from the keplr chain registry
Type of chain, e.g. "cosmos" or "evm"
IBC capabilities of the chain
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
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"
}
]
}