GET
/
api
/
{chainId}
/
account
/
{accountId}
/
state
curl --request GET \
  --url https://api.adamik.io/api/{chainId}/account/{accountId}/state \
  --header 'Authorization: <api-key>'
{
  "chainId": "algorand",
  "accountId": "<string>",
  "balances": {
    "native": {
      "available": "<string>",
      "unconfirmed": "<string>",
      "total": "<string>"
    },
    "tokens": [
      {
        "token": {
          "type": "TRC10",
          "id": "<string>",
          "name": "<string>",
          "ticker": "<string>",
          "decimals": "<string>",
          "contractAddress": "<string>"
        },
        "amount": "<string>"
      }
    ],
    "staking": {
      "total": "<string>",
      "locked": "<string>",
      "unlocking": "<string>",
      "unlocked": "<string>",
      "positions": [
        {
          "validatorAddresses": [
            "<string>"
          ],
          "amount": "<string>",
          "status": "free",
          "completionDate": 123
        }
      ],
      "rewards": {
        "native": [
          {
            "validatorAddress": "<string>",
            "amount": "<string>"
          }
        ],
        "tokens": [
          {
            "token": {
              "type": "TRC10",
              "id": "<string>",
              "name": "<string>",
              "ticker": "<string>",
              "decimals": "<string>",
              "contractAddress": "<string>"
            },
            "validatorAddress": "<string>",
            "amount": "<string>"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

chainId
enum<string>
required
Available options:
algorand,
cosmoshub,
cosmoshub-testnet,
osmosis,
osmosis-testnet,
celestia,
celestia-testnet,
dydx,
axelar,
ethereum,
sepolia,
holesky,
zksync,
zksync-sepolia,
injective-evm-testnet,
base,
base-sepolia,
optimism,
optimism-sepolia,
arbitrum,
arbitrum-sepolia,
bitcoin,
monad-private-testnet,
bitcoin-testnet,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
avalanche-fuji,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
mantle,
rootstock,
rootstock-testnet,
litecoin,
dogecoin,
ton,
chiliz,
chiliz-testnet,
injective,
akash,
band,
dymension,
kyve,
neutron,
terra2,
stargaze,
tron,
evmos,
irisnet,
juno,
lum-network,
omniflix,
sei,
medibloc,
passage,
quasar,
seda,
sommelier,
shentu,
stride,
chihuahua,
bitsong,
persistence,
comdex,
fetch-ai,
humans-ai,
ki,
likecoin,
mars-hub,
provenance,
quicksilver,
saga,
ux-chain,
kava
accountId
string
required

Account identifier (address, xpub, etc) for the specified chain ID

Query Parameters

include
string

Optional filter to request specific data. Use a single 'include' parameter with comma-separated values.

Response

200 - application/json
Returns the current balance information for the specified address and chain ID.
chainId
enum<string>
required
Available options:
algorand,
cosmoshub,
cosmoshub-testnet,
osmosis,
osmosis-testnet,
celestia,
celestia-testnet,
dydx,
axelar,
ethereum,
sepolia,
holesky,
zksync,
zksync-sepolia,
injective-evm-testnet,
base,
base-sepolia,
optimism,
optimism-sepolia,
arbitrum,
arbitrum-sepolia,
bitcoin,
monad-private-testnet,
bitcoin-testnet,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
avalanche-fuji,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
mantle,
rootstock,
rootstock-testnet,
litecoin,
dogecoin,
ton,
chiliz,
chiliz-testnet,
injective,
akash,
band,
dymension,
kyve,
neutron,
terra2,
stargaze,
tron,
evmos,
irisnet,
juno,
lum-network,
omniflix,
sei,
medibloc,
passage,
quasar,
seda,
sommelier,
shentu,
stride,
chihuahua,
bitsong,
persistence,
comdex,
fetch-ai,
humans-ai,
ki,
likecoin,
mars-hub,
provenance,
quicksilver,
saga,
ux-chain,
kava
accountId
string
required
balances
object
required