getinfo - Dogecoin
Example code for the getinfo JSON-RPC method. Complete guide on how to use getinfo JSON-RPC in GetBlock Web3 documentation.
Parameters
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
Field
Type
Description
Use Case
Error Handling
Error Code
Message
Cause
Last updated
Was this helpful?