check_stx_balance
Check the STX token balance for any Stacks blockchain address to verify holdings and monitor account status.
Instructions
Check the STX balance for a Stacks address. Simple and fast balance lookup.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Stacks address to check balance for | |
token | No | Specific token contract to check (e.g., SP1H1733V5MZ3SZ9XRW9FKYGEZT0JDGEB8Y634C7R.token-name) |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Stacks address to check balance for",
"type": "string"
},
"token": {
"description": "Specific token contract to check (e.g., SP1H1733V5MZ3SZ9XRW9FKYGEZT0JDGEB8Y634C7R.token-name)",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}