# Octav PRO – Address Sync Status

> Octav PRO – Address Sync Status 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 current synchronization status of a given blockchain address in Octav's portfolio intelligence system

## Facts

- Endpoint: GET https://api.octav.fi/v1/agent/status
- 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-address-sync-status-8b0ca454
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2LEMQy0gx1JE7g7lZb3GO

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-address-sync-status-8b0ca454
```

Example prompt: Can you check the sync status of my wallet address 0x1234abcd... on Octav to see if it's finished indexing and ready to use?

## When to prefer this

Use this endpoint before querying NAV, holdings, or DeFi positions to confirm that the address data is fully indexed and up-to-date in Octav's system, avoiding stale or incomplete portfolio data

## Known failure modes

- Invalid or malformed blockchain address returns an error
- Address not yet registered or tracked in Octav returns not-found or unsynced status
- Network or API downtime returns a service unavailable error
- Payment failure (x402) if USDC balance insufficient

## 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 indicating whether the given blockchain address has been fully synchronized/indexed by Octav, including the current sync state or progress details

## 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 check sync status 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-address-sync-status-8b0ca454/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)
