v2

latestOpenAPI 3.1.0Apache 2.02026-07-31441011.7 MB
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/v1/supported-networks

Response

A successful response.

{"stackTrail":"components:schemas:check_supported_networks_response:items","oasType":"schema","type":"unknown"}

Example response

[
  {
    "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
    }
  }
]