# AdEx Aura Portfolio Balances by Network

> AdEx Aura Portfolio Balances by Network is a paid API for AI agents from aura.adex.network, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Fetches token/asset portfolio balances for a wallet address, grouped by blockchain network

## Facts

- Endpoint: GET https://aura.adex.network/api/x402/portfolio/balances
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adex-aura-portfolio-balances-by-network-07b14bcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BIutiIBYB83ypH28R_ThF

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 adex-aura-portfolio-balances-by-network-07b14bcb
```

Example prompt: Can you pull up the portfolio balances for my wallet 0x1234...abcd, grouped by network, so I can see how my assets are spread across different blockchains?

## When to prefer this

Use this endpoint when you need a structured, multi-chain view of a wallet's token holdings grouped by network. Prefer this over generic blockchain explorers when you want aggregated cross-chain portfolio data in a single call. Especially useful for DeFi dashboards, rebalancing agents, or portfolio tracking workflows.

## Known failure modes

- Invalid or malformed wallet address returns an error
- ENS name cannot be resolved returns lookup failure
- Wallet has no balances returns empty result
- Network timeout or upstream provider failure
- Rate limiting or payment failure for the x402 micropayment

## How this service works

Fetch portfolio balances grouped by network

## Output

Returns portfolio token balances for the queried wallet address or ENS name, organized and grouped by blockchain network, showing asset holdings per chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address or ENS name to query"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adex-aura-portfolio-balances-by-network-07b14bcb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aura.adex.network](https://www.zero.xyz/host/aura.adex.network/llms.txt)
