Skip to main content
GET
/
v1
/
supported-networks
cURL
curl 'https://api.tenderly.co/api/v1/supported-networks' \
  -H 'content-type: application/json'
[
  {
    "network_name": "Conflux eSpace",
    "chain_id": "1030",
    "network_slugs": {
      "explorer_slug": "cfx-espace",
      "node_rpc_slug": "cfx-espace",
      "vnet_rpc_slug": "cfx-espace"
    },
    "supported_features": {
      "virtual_testnet": true,
      "node": true,
      "explorer": true,
      "simulator": true,
      "monitoring": true
    }
  },
  {
    "network_name": "Metis Andromeda",
    "chain_id": "1088",
    "network_slugs": {
      "explorer_slug": "metis-andromeda",
      "node_rpc_slug": "metis-andromeda",
      "vnet_rpc_slug": ""
    },
    "supported_features": {
      "virtual_testnet": false,
      "node": true,
      "explorer": true,
      "simulator": true,
      "monitoring": true
    }
  },
  {
    "network_name": "Shape Sepolia",
    "chain_id": "11011",
    "network_slugs": {
      "explorer_slug": "shape-sepolia",
      "node_rpc_slug": "",
      "vnet_rpc_slug": ""
    },
    "supported_features": {
      "virtual_testnet": false,
      "node": false,
      "explorer": true,
      "simulator": true,
      "monitoring": true
    }
  }
]

Response

A successful response.

Example:
[
{
"network_name": "Conflux eSpace",
"chain_id": "1030",
"network_slugs": {
"explorer_slug": "cfx-espace",
"node_rpc_slug": "cfx-espace",
"vnet_rpc_slug": "cfx-espace"
},
"supported_features": {
"virtual_testnet": true,
"node": true,
"explorer": true,
"simulator": true,
"monitoring": true
}
},
{
"network_name": "Metis Andromeda",
"chain_id": "1088",
"network_slugs": {
"explorer_slug": "metis-andromeda",
"node_rpc_slug": "metis-andromeda",
"vnet_rpc_slug": ""
},
"supported_features": {
"virtual_testnet": false,
"node": true,
"explorer": true,
"simulator": true,
"monitoring": true
}
},
{
"network_name": "Shape Sepolia",
"chain_id": "11011",
"network_slugs": {
"explorer_slug": "shape-sepolia",
"node_rpc_slug": "",
"vnet_rpc_slug": ""
},
"supported_features": {
"virtual_testnet": false,
"node": false,
"explorer": true,
"simulator": true,
"monitoring": true
}
}
]