get_transaction_history
Retrieve detailed transaction history for any Stacks blockchain address with pagination controls to manage large datasets.
Instructions
Get detailed transaction history for a Stacks address with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Stacks address to get transaction history for | |
limit | No | Number of transactions to retrieve (default: 20, max: 50) | |
offset | No | Number of transactions to skip for pagination |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Stacks address to get transaction history for",
"type": "string"
},
"limit": {
"description": "Number of transactions to retrieve (default: 20, max: 50)",
"type": "number"
},
"offset": {
"description": "Number of transactions to skip for pagination",
"type": "number"
}
},
"required": [
"address"
],
"type": "object"
}