get_btc_tx_history
Retrieve the most recent Bitcoin transaction history for any mainnet address. Each entry includes txid, satoshis sent/received, network fee, block height, time, and RBF eligibility.
Instructions
READ-ONLY — recent Bitcoin transaction history for a single address (newest-first). Each entry surfaces txid, received/sent sats from this address's perspective, the network fee, block height + time (when confirmed), and an RBF-eligible flag (sequence < 0xFFFFFFFE on at least one input). Default 25 txs, capped at 50 (one Esplora page); pagination beyond is a follow-up.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Bitcoin mainnet address. Accepts legacy (1...), P2SH (3...), native segwit (bc1q...), and taproot (bc1p...). Testnet/signet not supported. | |
| limit | No | Max number of txs to return (newest-first). Default 25; capped at 50 (one Esplora page). Pagination beyond this is a follow-up. |