📝 Share Your Feedback on Twitter and Claim 1M Free GetBlock Requests

Method: POST net_services

dropdown

Method RPC net_services example for Ethereum (ETH)

POST net_services

Returns enabled services (for example, jsonrpc) and the host and port for each service.

Parameters

-

Request

curl --location --request POST 'https://eth.getblock.io/mainnet/' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "net_services",
"params": [],
"id": "getblock.io"}'


Response

{
    "id": "getblock.io",
    "jsonrpc": "2.0",
    "result": {
        "jsonrpc": {
            "host": "0.0.0.0",
            "port": "8545"
        },
        "metrics": {
            "host": "0.0.0.0",
            "port": "6174"
        },
        "p2p": {
            "host": "0.0.0.0",
            "port": "30303"
        },
        "ws": {
            "host": "0.0.0.0",
            "port": "8546"
        }
    }
}