Skip to main content
GET
https://partners-backend-1038109371738.europe-west1.run.app
/
api
/
v1
/
{chain_id}
/
wallets
/
{wallet}
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x1234567890abcdef1234567890abcdef12345678"
{
  "wallet": "0x1234567890abcdef1234567890abcdef12345678",
  "status": "activated",
  "deposits": [
    {
      "amount": 1000000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-15T10:30:00Z",
      "tx_hash": "0xabc..."
    }
  ],
  "withdraws": [],
  "selected_protocols": ["aave", "compound", "moonwell"],
  "current_protocols": ["aave"],
  "current_token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "activation_date": "2024-01-15T10:35:00Z",
  "last_deactivation_date": null,
  "last_reactivation_date": null,
  "eoa": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd"
}
SDK Alternative: Use giza.agent.getPortfolio() for a simpler TypeScript interface. See SDK docs

Description

Retrieves detailed information about a specific wallet including status, deposits, withdrawals, and protocol allocations.

Path Parameters

chain_id
integer
required
The blockchain chain ID (e.g., 8453 for Base)
wallet
string
required
The wallet address to query

Query Parameters

eoa
boolean
default:"false"
If true, treats the wallet parameter as an EOA (origin wallet) address and looks up the associated smart account

Response

wallet
string
The wallet address
status
string
Current agent status: activated, activating, deactivating, deactivated, running, blocked, emergency
deposits
array
List of deposits made to the wallet
withdraws
array
List of withdrawals
selected_protocols
array
Protocols the agent is configured to use
current_protocol
string
Currently active protocol (if single protocol mode)
current_protocols
array
Currently active protocols (if multi protocol mode)
activation_date
string
ISO date when the agent was activated
last_deactivation_date
string
ISO date of last deactivation (if applicable)
eoa
string
The origin wallet address
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x1234567890abcdef1234567890abcdef12345678"
{
  "wallet": "0x1234567890abcdef1234567890abcdef12345678",
  "status": "activated",
  "deposits": [
    {
      "amount": 1000000000,
      "token_type": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "date": "2024-01-15T10:30:00Z",
      "tx_hash": "0xabc..."
    }
  ],
  "withdraws": [],
  "selected_protocols": ["aave", "compound", "moonwell"],
  "current_protocols": ["aave"],
  "current_token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "activation_date": "2024-01-15T10:35:00Z",
  "last_deactivation_date": null,
  "last_reactivation_date": null,
  "eoa": "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd"
}