# Octav PRO – Airdrop Portfolio Lookup

> Octav PRO – Airdrop Portfolio Lookup 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-13).

Returns the airdrop portfolio (claimable and claimed airdrops) for a given blockchain wallet address

## Facts

- Endpoint: GET https://api.octav.fi/v1/agent/airdrop
- Price: $0.025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octav-pro-airdrop-portfolio-lookup-7331df0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qr9JrRMndayZe46sJUqCF

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-airdrop-portfolio-lookup-7331df0f
```

Example prompt: Can you check what airdrops are available or have been received for the wallet address 0x1234abcd... on Octav?

## When to prefer this

Use this endpoint when you need to specifically enumerate airdrop tokens received by or claimable for a wallet address, distinct from general holdings or DeFi positions. Prefer this over the general holdings endpoint when the user's intent is specifically about airdrops rather than overall portfolio NAV or DeFi protocol positions.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Unsupported blockchain address format may return no results or an error
- Rate limiting or payment failure (402) if the x402 payment header is missing or insufficient
- Address with no airdrop history returns an empty portfolio
- Network timeout for addresses with large transaction histories

## 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 airdrop portfolio for the specified wallet address, including token names, quantities, claim status, and estimated values of airdropped assets.

## 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 airdrops for"
      }
     }
    }
   }
  },
  "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-airdrop-portfolio-lookup-7331df0f/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)
