# AdEx Aura Portfolio Strategies

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

Fetches portfolio balances for a wallet address and returns LLM-generated DeFi investment strategies based on those holdings

## Facts

- Endpoint: GET https://aura.adex.network/api/x402/portfolio/strategies/
- Price: $0.0464/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adex-aura-portfolio-strategies-274b8797
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zXKhvRgPIpZN5hUCJxaLQ

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-strategies-274b8797
```

Example prompt: Can you analyze my crypto wallet 0x742d35Cc6634C0532925a3b8D4C9E8b4B1e2f3a4 and give me LLM-generated DeFi strategies based on what I'm holding?

## When to prefer this

Choose this endpoint when you need both current portfolio balance data AND AI-generated strategy recommendations in a single call for a given wallet address. It is particularly useful for DeFi agents that need actionable advice tied directly to real holdings, rather than generic market guidance. Prefer it over generic portfolio trackers when the user wants LLM-driven strategic suggestions, not just raw balance data.

## Known failure modes

- Invalid or malformed wallet address returns an error
- ENS name that cannot be resolved returns a lookup failure
- Empty portfolio (no on-chain balances) may return no strategies
- Rate limiting or payment failure ($0.0464 USDC x402) blocks the request
- Network timeouts if on-chain data sources are slow to respond

## How this service works

Fetch portfolio balances and LLM-generated strategies

## Output

Returns current portfolio balances for the queried wallet address grouped or enumerated by asset, along with one or more LLM-generated investment or DeFi strategy recommendations tailored to the observed holdings.

## 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-strategies-274b8797/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)
