Skip to main content
GET
https://partners-backend-1038109371738.europe-west1.run.app
/
api
/
v1
/
{chain_id}
/
wallets
/
{wallet}
/
deposits
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits"
{
  "deposits": [
    {
      "amount": 1000000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-15T10:30:00Z",
      "tx_hash": "0xabc123..."
    },
    {
      "amount": 500000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-20T14:00:00Z",
      "tx_hash": "0xdef456..."
    }
  ]
}
SDK Alternative: Use giza.agent.getDeposits() for a simpler TypeScript interface. See SDK docs

Description

Retrieves the list of deposits made to a specific wallet.

Path Parameters

chain_id
integer
required
The blockchain chain ID
wallet
string
required
The wallet address

Query Parameters

eoa
boolean
default:"false"
If true, treats wallet as an EOA address

Response

deposits
array
List of deposits
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../deposits"
{
  "deposits": [
    {
      "amount": 1000000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-15T10:30:00Z",
      "tx_hash": "0xabc123..."
    },
    {
      "amount": 500000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-20T14:00:00Z",
      "tx_hash": "0xdef456..."
    }
  ]
}