bitcoin_transactions
Retrieve complete Bitcoin transaction history for any address, including timestamps, amounts, and transaction IDs. Supports pagination to navigate through large datasets.
Instructions
Used to fetch the full transaction history of a Bitcoin wallet. Required: address - The Bitcoin address to query transactions for. Optional: pageSize - Number of results per page (default: 10). Optional: pageNumber - Page number for pagination (default: 0, first page). Returns comprehensive transaction details including timestamps, amounts, and transaction IDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The Bitcoin address to get transaction history for. Must be a valid Bitcoin address. | |
| pageSize | No | Number of transactions to return per page. Default is 10, maximum is 100. | |
| pageNumber | No | Page number for pagination, starting from 0. Default is 0. |