Skip to main content
GET
/
api
/
v1
/
account_fund_history
Get user fund history (deposits and withdrawals)
curl --request GET \
  --url https://api.mainnet.aptoslabs.com/decibel/api/v1/account_fund_history \
  --header 'Authorization: Bearer <token>'
{
  "funds": [
    {
      "amount": 1000,
      "balance_after": 5000,
      "movement_type": "deposit",
      "timestamp": 1703318400000,
      "transaction_version": 12345678
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

Bearer token from Geomi. See Authentication for setup instructions.

Query Parameters

account
string
required

Account address

pagination
object
required

Response

Fund history retrieved successfully

funds
object[]
required
total
integer<int64>
required
Required range: x >= 0