# Octav PRO – Portfolio Holdings by Address

> Octav PRO – Portfolio Holdings by Address is a paid API for AI agents from api.octav.fi, paid per call via x402, $0.025/call, status unknown (last checked 2026-09-15).

Returns the combined wallet and DeFi protocol holdings for a given blockchain address

## Facts

- Endpoint: GET https://api.octav.fi/v1/agent/portfolio
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octav-pro-portfolio-holdings-by-address-08f94e50
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YFPlsJ2pJy3p3cZrFfyHe

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 octav-pro-portfolio-holdings-by-address-08f94e50
```

Example prompt: Can you pull up the full portfolio for wallet address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I want to see all the token holdings and DeFi protocol positions across every chain?

## When to prefer this

Use this endpoint when you need a comprehensive view of both raw token balances AND DeFi protocol positions for an address in one call. Prefer the dedicated wallet-only or NAV endpoint if you need a narrower or aggregated dollar value instead of the full holdings breakdown.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Address not yet indexed or synced returns empty or partial data
- Unsupported chain for protocol holdings may return incomplete results
- Rate limit exceeded or payment failure returns 402 or 429 status
- Network timeout for addresses with very large portfolios

## How this service works

Monitor crypto portfolios with automated NAV reports, exposure insights, and AI-powered transaction labeling. Octav Pro helps funds and institutions turn digital-asset complexity into clear, compliant reporting.

## Output

A JSON object containing the combined wallet token balances and DeFi protocol positions (e.g. liquidity pools, lending positions, staking) for the specified address, with asset names, quantities, and values.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "addresses"
     ],
     "properties": {
      "addresses": {
       "type": "string",
       "required": true,
       "description": "The address of the wallet to get the portfolio of (EVM or SOLANA)"
      },
      "aggregated": {
       "type": "boolean",
       "required": false,
       "description": "Aggregate holdings across addresses"
      },
      "includeNFTs": {
       "type": "boolean",
       "required": false,
       "description": "Include NFT holdings"
      },
      "waitForSync": {
       "type": "boolean",
       "required": false,
       "description": "Wait for data sync before returning"
      },
      "includeImages": {
       "type": "boolean",
       "required": false,
       "description": "Include token images"
      },
      "includeExplorerUrls": {
       "type": "boolean",
       "required": false,
       "description": "Include block explorer URLs"
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/octav-pro-portfolio-holdings-by-address-08f94e50/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.octav.fi](https://www.zero.xyz/host/api.octav.fi/llms.txt)
