get_stacks_account_info
Retrieve Stacks blockchain account details including balance, transaction history, and token holdings to monitor wallet activity and verify account status.
Instructions
Get comprehensive information about a Stacks account including STX balance, nonce, tokens, and recent activity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Stacks address (e.g., SP1H1733V5MZ3SZ9XRW9FKYGEZT0JDGEB8Y634C7R) | |
includeTokens | No | Include token balances in response | |
includeTransactions | No | Include recent transactions in response |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Stacks address (e.g., SP1H1733V5MZ3SZ9XRW9FKYGEZT0JDGEB8Y634C7R)",
"type": "string"
},
"includeTokens": {
"description": "Include token balances in response",
"type": "boolean"
},
"includeTransactions": {
"description": "Include recent transactions in response",
"type": "boolean"
}
},
"required": [
"address"
],
"type": "object"
}