Networks

Supported Networks List (ID Map)

This endpoint allows you to query all the supported networks on GeckoTerminal

get/onchain/networks

Query parameters

pageinteger

page through results <br> Default value: 1

Response

Get list of supported networks

Example response

{
  "data": [
    {
      "id": "eth",
      "type": "network",
      "attributes": {
        "name": "Ethereum",
        "coingecko_asset_platform_id": "ethereum"
      }
    },
    {
      "id": "bsc",
      "type": "network",
      "attributes": {
        "name": "BNB Chain",
        "coingecko_asset_platform_id": "binance-smart-chain"
      }
    },
    {
      "id": "polygon_pos",
      "type": "network",
      "attributes": {
        "name": "Polygon POS",
        "coingecko_asset_platform_id": "polygon-pos"
      }
    }
  ]
}

Changes