Skip to main content
POST
txpool_content
Arc 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
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:txpool_content
params
array

Response

200 - application/json

Returns the result of txpool_content.

jsonrpc
string
id
integer
result
object
Last modified on August 3, 2026