← Bitcoin Cash overview

Bitcoin Cash · bitcoin

getrawmempool

Bitcoin Core RPC: getrawmempool

Bitcoin Core / compatible node RPC. Reference: developer.bitcoin.org/reference/rpc/getrawmempool.html

cURL

Endpoint: https://bch-mainnet.eu1.azxa.io/<api-key> — replace <api-key> with your API key from the Azxa app .

Terminal
curl -X POST https://bch-mainnet.eu1.azxa.io/<api-key> \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"1.0","id":1,"method":"getrawmempool","params":[]}'

Example request

JSON-RPC
{
  "jsonrpc": "1.0",
  "id": 1,
  "method": "getrawmempool",
  "params": []
}

Result

Bitcoin Core JSON-RPC result

Example response
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": null
}
Schema
{
  "type": "unknown"
}