Skip to main content
GET
https://partners-backend-1038109371738.europe-west1.run.app
/
api
/
v1
/
{chain_id}
/
wallets
/
{wallet}
/
fee
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../fee"
{
  "percentage_fee": 0.1,
  "fee": 0
}
SDK Alternative: Use giza.agent.getFees() for a simpler TypeScript interface. See SDK docs

Description

Retrieves the fee information for a wallet, including the percentage fee applied to yields.

Path Parameters

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

Query Parameters

amount
integer
Optional amount to calculate fee for

Response

percentage_fee
number
Fee percentage (e.g., 0.1 = 10%)
fee
number
Calculated fee amount (if amount was provided)
curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../fee"
{
  "percentage_fee": 0.1,
  "fee": 0
}