Skip to main content
GET
/
v1
/
metadata
/
chains
List Chains
curl --request GET \
  --url https://api.example.com/v1/metadata/chains \
  --header 'X-Access-Key: <x-access-key>' \
  --header 'X-Signature: <x-signature>' \
  --header 'X-Timestamp: <x-timestamp>'
{
  "chains": [
    {}
  ]
}

List Chains

Retrieve a list of all supported blockchain networks and their configurations.

Authentication

X-Access-Key
string
required
API access key
X-Signature
string
required
HMAC-SHA256 signature
X-Timestamp
string
required
ISO 8601 timestamp

Query Parameters

network
string
Filter by network type (mainnet, testnet)
ecosystem
string
Filter by ecosystem (evm, solana, bitcoin)

Response

chains
array
Array of chain configurations

Example

curl -X GET "https://api.axonvault.io/v1/metadata/chains?network=mainnet" \
  -H "X-Access-Key: ak_live_abc123" \
  -H "X-Signature: sha256=..." \
  -H "X-Timestamp: 2024-01-15T10:30:00Z"
Response:
{
  "chains": [
    {
      "chainId": "eip155:1",
      "name": "Ethereum Mainnet",
      "ecosystem": "evm",
      "network": "mainnet",
      "nativeCurrency": {
        "name": "Ether",
        "symbol": "ETH",
        "decimals": 18
      },
      "rpcUrls": ["https://eth.axonvault.io"],
      "blockExplorerUrl": "https://etherscan.io",
      "coinType": 60,
      "enabled": true
    },
    {
      "chainId": "eip155:8453",
      "name": "Base",
      "ecosystem": "evm",
      "network": "mainnet",
      "nativeCurrency": {
        "name": "Ether",
        "symbol": "ETH",
        "decimals": 18
      },
      "rpcUrls": ["https://base.axonvault.io"],
      "blockExplorerUrl": "https://basescan.org",
      "coinType": 60,
      "enabled": true
    },
    {
      "chainId": "solana:mainnet",
      "name": "Solana Mainnet",
      "ecosystem": "solana",
      "network": "mainnet",
      "nativeCurrency": {
        "name": "Solana",
        "symbol": "SOL",
        "decimals": 9
      },
      "rpcUrls": ["https://solana.axonvault.io"],
      "blockExplorerUrl": "https://solscan.io",
      "coinType": 501,
      "enabled": true
    }
  ]
}

Supported Chains

ChainChain IDEcosystem
Ethereumeip155:1EVM
Solanasolana:mainnetSolana