POST
/
api
/
Account
/
getaccountinfo
Get Account Info
curl --request POST \
  --url https://api.altude.so/api/Account/getaccountinfo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "accountAddress": "<string>"
}'
{
  "accountInfo": {
    "address": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
    "owner": "11111111111111111111111111111112",
    "lamports": 1000000,
    "executable": false
  }
}
Retrieve detailed information about a specific account address.

Request Body

accountAddress
string
required
The address of the account to get information for

Response

accountInfo
object
Detailed account information
{
  "accountInfo": {
    "address": "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d",
    "owner": "11111111111111111111111111111112",
    "lamports": 1000000,
    "executable": false
  }
}