Skip to content

blockreq_supportedNetworks

Returns all supported blockchain networks, including each network’s slug, name, chain ID, and endpoint URL template. Useful for discovering available networks before creating endpoints.

None

FieldTypeDescription
networksarrayList of supported networks
networks[].slugstringNetwork slug for API use (e.g., ethereum)
networks[].namestringHuman-readable name
networks[].chainIdintegerEVM chain ID
networks[].subdomainstringSubdomain used in endpoint URLs
networks[].httpsEndpointstringHTTPS endpoint URL template
networks[].wssEndpointstringWSS endpoint URL template
{
"jsonrpc": "2.0",
"method": "blockreq_supportedNetworks",
"params": [],
"id": 1
}
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"networks": [
{
"slug": "ethereum",
"name": "Ethereum Mainnet",
"chainId": 1,
"subdomain": "eth-mainnet",
"httpsEndpoint": "https://eth-mainnet.blockreq.com/v1/rpc/{API_KEY}",
"wssEndpoint": "wss://eth-mainnet.blockreq.com/v1/rpc/{API_KEY}"
},
{
"slug": "bsc",
"name": "BNB Smart Chain",
"chainId": 56,
"subdomain": "bsc-mainnet",
"httpsEndpoint": "https://bsc-mainnet.blockreq.com/v1/rpc/{API_KEY}",
"wssEndpoint": "wss://bsc-mainnet.blockreq.com/v1/rpc/{API_KEY}"
}
]
}
}
Terminal window
curl -X POST https://eth-mainnet.blockreq.com/v1/rpc/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"blockreq_supportedNetworks","params":[],"id":1}'