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

headers

X-API-Key
string
required
The API key created from Altude

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
  }
}