curl --request POST \
--url https://nd-202-842-353.p2pify.com/788f110831fe13808302bd79796d55e8 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "1.0",
"method": "getmempoolentry",
"params": [
"48b46e5905386ea21ff94d2be67dd7a75cc177c53e301d1ca29c5721d502793e"
],
"id": 1
}'
{
"result": {},
"error": {},
"id": 123
}
curl --request POST \
--url https://nd-202-842-353.p2pify.com/788f110831fe13808302bd79796d55e8 \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "1.0",
"method": "getmempoolentry",
"params": [
"48b46e5905386ea21ff94d2be67dd7a75cc177c53e301d1ca29c5721d502793e"
],
"id": 1
}'
{
"result": {},
"error": {},
"id": 123
}
The getmempoolentry
method provides detailed information about a specific transaction in the mempool.
Get you own node endpoint today
Start for free and get your app to production levels immediately. No credit card required.
You can sign up with your GitHub, X, Google, or Microsoft account.
txid
(required) — the transaction ID for which to retrieve detailed information.result
— an object containing detailed information about the specified transaction in the mempool.error
— an object containing an error message if an error occurred, otherwise null
.id
— an integer representing the ID of the request, used to match requests with responses.The getmempoolentry
method is useful for obtaining specific details about a transaction that is currently in the mempool. This information can include transaction data, fee details, and other relevant information.
Detailed information about the specified transaction in the mempool
The response is of type object
.
Was this page helpful?