cURL
Other
Check supported networks
The endpoint returns the list of networks that are currently supported on the Tenderly platform and also returns information about features these networks are supported on as well as corresponding network slugs users can use for integration with Tenderly.
GET
cURL
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
}
}
]