BTC
POST
GET
Last updated on January 1, 1970
2 min read
Method getmemoryinfo undefined ()
connect with JSON-RPC protocol
getmemoryinfo
Returns an object containing information about memory usage.
Parameters
mode
- string, optional, default=”stats”
Determines what kind of information is returned.
- "stats" returns general statistics about memory usage in the daemon.
- "mallocinfo" returns an XML string describing low-level heap state (only available if compiled with glibc 2.10+).
Request
curl --location --request POST 'https://btc.getblock.io/mainnet/' \
--header 'x-api-key: YOUR-API-KEY' \
--header 'Content-Type: application/json' \
--data-raw '{"jsonrpc": "2.0",
"method": "getmemoryinfo",
"params": [null],
"id": "getblock.io"}'
Response
{
"error": null,
"id": "getblock.io",
"result": {
"locked": {
"chunks_free": 1,
"chunks_used": 1,
"free": 65296,
"locked": 65536,
"total": 65536,
"used": 240
}
}
}
Start Building with GetBlock RPCs for Free
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }