GET
/
networks
Supported Networks List (ID Map)
curl --request GET \
  --url https://pro-api.coingecko.com/api/v3/onchain/networks \
  --header 'x-cg-pro-api-key: <api-key>'
{
  "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"
      }
    }
  ]
}

Tips

  • You may use this endpoint to query the list of networks with network ID for other endpoints that contain params like network.
  • You may include values such as page to specify which page of responses you would like to show.

Authorizations

x-cg-pro-api-key
string
header
required

Query Parameters

page
integer

page through results Default value: 1

Response

200 - application/json

Get list of supported networks

data
object[]