# BunnVault Treasury-as-a-Service Vault Manager

> BunnVault Treasury-as-a-Service Vault Manager is a paid API for AI agents from bunnvault.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Executes autonomous USDC treasury actions (deposit, withdraw, rebalance, status check) on Aave v3 for an agent wallet address on Base Mainnet

## Facts

- Endpoint: POST https://bunnvault.xyz/api/vault/manage
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bunnvault-treasury-as-a-service-vault-manager-742f5b65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xwaR4Ko14d0CKZpIBDyKB

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bunnvault-treasury-as-a-service-vault-manager-742f5b65 -d '<json body>'
```

Example prompt: Deposit 500 USDC into BunnVault for my agent wallet 0xAbC123...def so it starts earning yield on Aave v3.

## When to prefer this

Choose this endpoint when an AI agent needs to autonomously manage a USDC treasury position on Aave v3 — specifically for depositing idle USDC to earn yield, withdrawing funds on demand, rebalancing positions, or querying vault status. Prefer over raw Aave interactions when you want a high-level Treasury-as-a-Service abstraction that handles the on-chain complexity on Base Mainnet.

## Known failure modes

- Invalid or missing agent wallet address returns a validation error
- amountUsdc missing or malformed for deposit/withdraw actions causes rejection
- Insufficient USDC balance in the agent wallet results in a failed deposit
- Aave v3 contract unavailability or Base Mainnet congestion may cause timeouts
- Calling rebalance or status with an amountUsdc field may be ignored or return a warning
- Unauthorized caller wallet may be rejected if access controls are enforced

## How this service works

BunnVault: Treasury-as-a-Service — autonomous USDC yield management via Aave v3

## Output

Returns the outcome of the requested treasury action, including confirmation of deposit/withdrawal/rebalance execution or a status snapshot of the agent wallet's current USDC position, yield accrued, and Aave v3 state on Base Mainnet.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "action": {
   "enum": [
    "deposit",
    "withdraw",
    "rebalance",
    "status"
   ],
   "type": "string",
   "description": "Treasury action"
  },
  "amountUsdc": {
   "type": "string",
   "description": "USDC amount for deposit/withdraw"
  },
  "agentAddress": {
   "type": "string",
   "description": "Agent wallet address to manage (0x...)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bunnvault-treasury-as-a-service-vault-manager-742f5b65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bunnvault.xyz](https://www.zero.xyz/host/bunnvault.xyz/llms.txt)
