net_version (BSC)

returns the current network id.

Parameters

none

Returns

String - The current network id.

  • "0x1": Ethereum Mainnet

  • "0x3": Ropsten Testnet

Request example

curl https://bsc.api.watchdata.io/node/jsonrpc?api_key=your_api_key
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc":"2.0", "method":"net_version", "params":[], "id":1}'

Result

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "0x1"
}

Last updated