Get mempool transactions
Retrieves all transactions that have been recently broadcast to the mempool. These are pending transactions awaiting confirmation.
GET
GET
/extended/v1/tx/mempool
Retrieves all transactions that have been recently broadcast to the mempool. These are pending transactions awaiting confirmation.
If you need to monitor new transactions, we highly recommend subscribing to WebSockets or Socket.io for real-time updates.
Query parameters
sender_address
string
Filter to only return transactions with this sender address.
Example:"SP1GPBP8NBRXDRJBFQBV7KMAZX1Z7W2RFWJEH0V10"
recipient_address
string
Filter to only return transactions with this recipient address (only applicable for STX transfer tx types).
address
string
Filter to only return transactions with this address as the sender or recipient (recipient only applicable for STX transfer tx types).
order_by
string
Option to sort results by transaction age, size, or fee rate.
Example:"fee"
Value in: "age" | "size" | "fee"
order
string
Option to sort results in ascending or descending order.
Example:"asc"
Value in: "asc" | "desc"
limit
integer
Max number of mempool transactions to fetch
Example:20
Default: 20
Maximum: 50
offset
integer
Index of first mempool transaction to fetch
Example:42000
unanchored
boolean
Include transaction data from unanchored (i.e. unconfirmed) microblocks
Example:true
Default: false
Status code | Description |
---|---|
200 | List of mempool transactions |
GET request that returns mempool transactions