get-address-txs-mempool
Retrieve pending Bitcoin transactions for a specific address in the mempool. This tool enables users to access real-time unconfirmed transactions, providing insights into Bitcoin network activity.
Instructions
Returns mempool transactions for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to get mempool txs for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to get mempool txs for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}