get_account_info
Retrieve account details, including balance and assets, from the Algorand blockchain network by providing an Algorand account address.
Instructions
Get account information including balance and assets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Algorand account address |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Algorand account address",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}