getinfo - Dogecoin
Example code for the getinfo JSON-RPC method. Complete guide on how to use getinfo JSON-RPC in GetBlock Web3 documentation.
This method returns an object containing various state info about the node.
Parameters
None
Request
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "getinfo",
"params": [],
"id": "getblock.io"
}'const axios = require('axios');
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "getinfo",
"params": [],
"id": "getblock.io"
});
const config = {
method: 'post',
url: 'https://go.getblock.io/<ACCESS-TOKEN>/',
headers: {
'Content-Type': 'application/json'
},
data: data
};
axios(config)
.then(response => console.log(JSON.stringify(response.data)))
.catch(error => console.log(error));Response
{
"result": {
"version": 1140500,
"protocolversion": 70015,
"walletversion": 130000,
"balance": 0.00000000,
"blocks": 3904788,
"timeoffset": 0,
"connections": 8,
"proxy": "",
"difficulty": 3525264.838757254,
"testnet": false,
"keypoololdest": 1609459200,
"keypoolsize": 100,
"paytxfee": 0.00000000,
"relayfee": 0.00100000,
"errors": ""
},
"error": null,
"id": "getblock.io"
}Response Parameters
version
number
The server version.
protocolversion
number
The protocol version.
walletversion
number
The wallet version.
balance
number
The total balance (if wallet enabled).
blocks
number
The current block count.
timeoffset
number
The time offset.
connections
number
The number of connections.
proxy
string
The proxy used.
difficulty
number
The current difficulty.
testnet
boolean
If on testnet.
keypoololdest
number
The oldest keypool time.
keypoolsize
number
The keypool size.
paytxfee
number
The transaction fee.
relayfee
number
The minimum relay fee.
errors
string
Any errors.
Use Case
The getinfo method is essential for:
Node status monitoring
Version verification
Network information
Wallet status (if enabled)
General node health checks
Error Handling
403
Forbidden
Missing or invalid ACCESS-TOKEN.
Last updated
Was this helpful?