Get dropped mempool transactions
Retrieves all recently-broadcast transactions that have been dropped from the mempool.
GET
/extended/v1/tx/mempool/dropped
Get dropped mempool transactions
Retrieves all recently-broadcast transactions that have been dropped from the mempool.
Transactions are dropped from the mempool if:
- they were stale and awaiting garbage collection or,
- were expensive, or
- were replaced with a new fee
Query Parameters
limit
integer
max number of mempool transactions to fetch
Default:96
Maximum: 200
offset
integer
index of first mempool transaction to fetch
Example:42000
Status code | Description |
---|---|
200 | List of dropped mempool transactions |
curl -X GET "https://api.hiro.so/extended/v1/tx/mempool/dropped?limit=96&offset=42000"
GET request that returns transactions
{
"limit": 0,
"offset": 0,
"total": 0,
"results": [
{
"tx_id": "string",
"nonce": 0,
"fee_rate": "string",
"sender_address": "string",
"sponsor_nonce": 0,
"sponsored": true,
"sponsor_address": "string",
"post_condition_mode": "allow",
"post_conditions": [
{
"principal": {
"type_id": "principal_origin"
},
"condition_code": "sent_equal_to",
"amount": "string",
"type": "stx"
}
],
"anchor_mode": "on_chain_only",
"tx_status": "pending",
"receipt_time": 0,
"receipt_time_iso": "string",
"tx_type": "token_transfer",
"token_transfer": {
"recipient_address": "string",
"amount": "string",
"memo": "string"
}
}
]
}