# WealthPulse Cross-Asset Portfolio Risk Analyzer

> WealthPulse Cross-Asset Portfolio Risk Analyzer is a paid API for AI agents from wealth.lonestaroracle.xyz, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Analyzes cross-asset portfolio risk by evaluating holdings across multiple asset classes and returning a risk assessment

## Facts

- Endpoint: GET https://wealth.lonestaroracle.xyz/analyze
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wealthpulse-cross-asset-portfolio-risk-analyzer-dd20015f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gTdtp201ZqxD24hJp3ixt

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 wealthpulse-cross-asset-portfolio-risk-analyzer-dd20015f
```

Example prompt: Can you run a cross-asset portfolio risk analysis on my holdings — I have 40% in US equities, 20% in bonds, 15% in crypto, 15% in commodities, and 10% in cash — and tell me where my biggest risk concentrations are?

## When to prefer this

Choose this endpoint when you need a holistic, cross-asset view of portfolio risk rather than single-asset analysis; ideal for users with diversified holdings spanning equities, fixed income, crypto, and commodities who want a unified risk score and exposure breakdown

## Known failure modes

- Missing or malformed portfolio input returns 400 bad request
- Insufficient payment (x402 payment required) returns 402 Payment Required
- Unrecognized asset class or ticker returns validation error
- Empty portfolio submission returns error
- Service unavailable returns 503

## How this service works

WealthPulse — cross-asset portfolio risk analysis

## Output

Returns a structured risk analysis report covering cross-asset exposure metrics, risk scores, concentration warnings, and portfolio-level risk indicators across the submitted holdings

## Example request

```json
{
 "wallet": "0x1234567890abcdef1234567890abcdef12345678",
 "tickers": "AAPL,BND,BTC,GLD,CASH",
 "contracts": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,0x2260FAC5E5542a773Aa44fBCfeDd86b8E3d60eB4"
}
```

## Request schema (JSON Schema)

```json
{
 "name": "LoneStarOracle — WealthPulse",
 "tags": [
  "portfolio",
  "risk",
  "finance",
  "crypto",
  "equities",
  "wallet"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "finance",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "wallet": {
       "type": "string",
       "title": "Wallet"
      },
      "tickers": {
       "type": "string",
       "title": "Tickers"
      },
      "contracts": {
       "type": "string",
       "title": "Contracts"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "risks": [
      "AI compute concentration: NVDA + RNDR = 55% of total assets"
     ],
     "score": 7,
     "verdict": "Elevated Risk",
     "narrative": "Portfolio shows high AI compute concentration across both crypto and equity holdings.",
     "cross_asset_flags": [
      "equity_crypto_overlap",
      "tech_concentration"
     ]
    }
   }
  }
 },
 "description": "Cross-asset personal finance risk analyzer. Combines crypto wallet health, token security, and equity portfolio data into a unified AI risk score and narrative."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wealthpulse-cross-asset-portfolio-risk-analyzer-dd20015f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wealth.lonestaroracle.xyz](https://www.zero.xyz/host/wealth.lonestaroracle.xyz/llms.txt)
