Skip to main content
POST
txpool_content
Tempo API method that returns the contents of the transaction pool. This includes both pending and queued transactions.
Get your own node endpoint todayStart 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.

Parameters

None.

Response

  • result — object containing pending and queued transactions:
    • pending — object mapping addresses to their pending transactions (keyed by nonce)
    • queued — object mapping addresses to their queued transactions (keyed by nonce)
Each transaction object contains:
  • hash — transaction hash
  • nonce — sender’s nonce
  • from — sender address
  • to — recipient address
  • value — value in wei
  • gas — gas limit
  • gasPrice — gas price
  • input — transaction data

txpool_content code examples

Body

application/json
jsonrpc
string
default:2.0
method
string
default:txpool_content
params
any[]
id
integer
default:1

Response

200 - application/json

Transaction pool content

jsonrpc
string
id
integer
result
object
Last modified on June 22, 2026