GET
/
api
/
{chainId}
/
account
/
{accountId}
/
history
curl --request GET \
  --url https://api.adamik.io/api/{chainId}/account/{accountId}/history \
  --header 'Authorization: <api-key>'
{
  "chainId": "cosmoshub",
  "accountId": "<string>",
  "transactions": [
    {
      "raw": "<any>",
      "parsed": {
        "id": "<string>",
        "mode": "transfer",
        "state": "pending",
        "tokenId": "<string>",
        "blockHeight": "<string>",
        "timestamp": "<string>",
        "fees": {
          "amount": "<string>",
          "ticker": "<string>"
        },
        "gas": "<string>",
        "nonce": "<string>",
        "memo": "<string>",
        "senders": [
          {
            "address": "<string>",
            "amount": "<string>",
            "ticker": "<string>"
          }
        ],
        "recipients": [
          {
            "address": "<string>",
            "amount": "<string>",
            "ticker": "<string>"
          }
        ],
        "validators": {
          "source": {
            "address": "<string>",
            "amount": "<string>",
            "ticker": "<string>"
          },
          "target": {
            "address": "<string>",
            "amount": "<string>",
            "ticker": "<string>"
          }
        }
      }
    }
  ],
  "pagination": {
    "nextPage": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

chainId
enum<string>
required
Available options:
cosmoshub,
osmosis,
celestia,
dydx,
axelar,
ethereum,
sepolia,
holesky,
base,
base-sepolia,
optimism,
arbitrum,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
injective,
akash,
neutron,
evmos,
juno,
sei,
stride,
kava
accountId
string
required

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

Query Parameters

nextPage
string

Token from the previous response of this endpoint. Provide it here to fetch the next page of results.

include
string

Optional filter to request specific data. Use a single 'include' parameter with comma-separated values. Possible values are 'parsed' and 'raw'.

Response

200 - application/json
Returns the current list of transactions for the specified address and chain ID.
chainId
enum<string>
required
Available options:
cosmoshub,
osmosis,
celestia,
dydx,
axelar,
ethereum,
sepolia,
holesky,
base,
base-sepolia,
optimism,
arbitrum,
polygon,
polygon-amoy,
bsc,
bsc-testnet,
linea,
linea-sepolia,
avalanche,
gnosis,
gnosis-chiado,
moonbeam,
moonriver,
moonbase,
fantom,
injective,
akash,
neutron,
evmos,
juno,
sei,
stride,
kava
accountId
string
required
transactions
object[]
required
pagination
object
required