Skip to main content

Supported Networks

The Cortex API supports 100+ blockchain networks, providing comprehensive coverage across major blockchains, Layer 2 solutions, and emerging networks.

Getting Network Information

List All Networks

GET /networks

Response:

{
"success": true,
"data": [
{
"id": 1,
"name": "Ethereum",
"symbol": "ETH",
"chainId": 1,
"networkShortName": "eth",
"isActive": true,
"isTestnet": false,
"rpcUrl": "https://eth-mainnet.g.alchemy.com/v2/...",
"explorerUrl": "https://etherscan.io",
"nativeCurrency": {
"name": "Ether",
"symbol": "ETH",
"decimals": 18
}
}
],
"meta": {
"total": 100,
"lastUpdated": "2024-01-01T00:00:00Z"
}
}

Next Steps