GET
/
v1
/
networks
/
{network_id}
Get network by ID
curl --request GET \
  --url https://api.cdp.coinbase.com/platform/v1/networks/{network_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "base-sepolia",
  "display_name": "Base Sepolia",
  "chain_id": 84532,
  "protocol_family": "evm",
  "is_testnet": true,
  "native_asset": {
    "network_id": "base-sepolia",
    "asset_id": "USDC",
    "decimals": 18,
    "contract_address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e"
  },
  "feature_set": {
    "faucet": true,
    "server_signer": true,
    "transfer": true,
    "trade": true,
    "stake": true,
    "gasless_send": true
  }
}

Authorizations

Authorization
string
header
required

Enter your JSON Web Token (JWT) here. Refer to the Generate JWT section of our Authentication docs for information on how to generate your Bearer Token.

Path Parameters

network_id
string
required

The ID of the network to fetch.

Response

Successful response for fetching the network.

id
enum<string>
required

The ID of the blockchain network. This is unique across all networks, and takes the form of <blockchain>-<network>.

Available options:
base-sepolia,
base-mainnet,
ethereum-hoodi,
ethereum-mainnet,
polygon-mainnet
display_name
string
required

The human-readable name of the blockchain network

Example:

"Base Sepolia"

chain_id
integer
required

The chain ID of the blockchain network

Example:

84532

protocol_family
enum<string>
required

The protocol family of the blockchain network

Available options:
evm
is_testnet
boolean
required

Whether the network is a testnet or not

Example:

true

native_asset
object
required

The native asset of the network

feature_set
object
required

The feature set enabled for the network