GET
/
dictionary
/
networks
/
{networkId}
Get Network by ID
curl --request GET \
  --url https://api.bron.org/dictionary/networks/{networkId}
{
  "addressExplorerUrl": "https://etherscan.io/address/",
  "confirmations": "6",
  "explorerUrl": "https://etherscan.io/tx/",
  "isTestnet": true,
  "name": "Ethereum",
  "nativeAssetId": "<string>",
  "nativeAssetSymbol": "<string>",
  "networkId": "BTC",
  "tags": [
    "show-vault"
  ]
}

Path Parameters

networkId
string
required

Response

OK

addressExplorerUrl
string

Website URL where you can look up addresses on this network

Examples:

"https://etherscan.io/address/"

confirmations
string

How many block confirmations are needed before a transaction is considered final and safe

Examples:

"6"

explorerUrl
string

Website URL where you can look up transactions on this network

Examples:

"https://etherscan.io/tx/"

isTestnet
boolean

True if this is a test network used for development/testing (not real money)

name
string

The human-readable name of this network that users will see

Examples:

"Ethereum"

nativeAssetId
string
nativeAssetSymbol
string
networkId
string

The unique ID for this blockchain network

Examples:

"BTC"

tags
enum<string>[]