WealthView

Built for Stellar treasury visibility

Agent-Ready Treasury Infrastructure for Stellar

Aggregate wallets, monitor treasury health, expose treasury data through APIs, and build AI-native treasury workflows on Stellar.

REST API OpenAPI Agent Ready MCP Compatible

Built For

Treasury Reporting

Aggregate reserve, operations, and ecosystem wallets into a single reporting view.

Stablecoin Treasuries

Monitor exposure across assets such as USDC, EURC, USDZ and other treasury reserves.

RWA Treasuries

Track tokenized treasury and real-world asset allocations across Stellar wallets.

AI Agents

Access treasury data through REST APIs, OpenAPI schemas, agent manifests, and MCP tools.

Paste comma-separated Stellar public wallet addresses. Example: GBXXX..., GDXXX...
Soroban / SEP-41 Token Contracts (optional)
Optional. Add SEP-41 token contract IDs to include Soroban token balances.
Treasury states can be shared through URLs without accounts.
No account required. The treasury state is stored in the URL.
Share Link reopens this treasury view. Snapshot downloads a timestamped report. Export JSON provides raw developer data.
API Online
Wallet count
0
Total XLM
0
Total USD value
$0.00

Treasury Signals

Aggregate wallets to generate treasury signals.

Treasury Intelligence

Aggregate wallets to generate treasury intelligence.

Treasury History

Snapshot-based history starts when you save a snapshot. It does not reconstruct past ledger balances.

No history loaded yet. Save a snapshot or refresh history for the current wallets.

Asset symbol Total amount USD value
No portfolio data yet.

Developer API

APIs allow software and external tools to access WealthView treasury data programmatically.

Agent-ready API
Treasury Signals API: /api/signals
Treasury Intelligence API: /api/intelligence
History API: /api/history
Snapshot API: /api/snapshot
OpenAPI spec: /openapi.json
Agent manifest: /agent.json
MCP manifest: /mcp.json
Endpoint example
GET /api/aggregate?wallets=GBGI5DB6EYA7W6BKVM7I6L5F3EIVUP4LSQC6AOE6DU7VWXAURFVLHO52,GDUY7J7A33TQWOSOQGDO776GGLM3UQERL4J3SPT56F6YS4ID7MLDERI4
Treasury Intelligence API
GET /api/intelligence?wallets=GBGI5DB6EYA7W6BKVM7I6L5F3EIVUP4LSQC6AOE6DU7VWXAURFVLHO52
Returns treasury health score, idle capital detection, rule-based alerts, benchmarks, executive brief, and next-action suggestions.
Query parameter
wallets: Comma-separated Stellar public wallet addresses used for treasury aggregation.
contracts: Optional comma-separated SEP-41 / Soroban token contract IDs.
saveSnapshot: Optional true value on /api/aggregate to store snapshot history.
Example API request
curl "https://YOUR-DOMAIN/api/aggregate?wallets=GBGI5DB6EYA7W6BKVM7I6L5F3EIVUP4LSQC6AOE6DU7VWXAURFVLHO52,GDUY7J7A33TQWOSOQGDO776GGLM3UQERL4J3SPT56F6YS4ID7MLDERI4"
Example JSON response
{
"success": true,
"timestamp": "2026-05-19T12:00:00.000Z",
"version": "1.0.0",
"walletCount": 2,
"totalXLM": 1234.56,
"totalUSD": 145.67,
"pricedAssets": ["XLM", "USDZ"],
"unpricedAssets": [],
"assets": [
{
"symbol": "XLM",
"amount": 1234.56,
"usdValue": 145.67,
"allocationPercent": 100
}
],
"errors": []
}
Quick Start
curl "https://YOUR-DOMAIN/api/aggregate?wallets=GBGI5DB6EYA7W6BKVM7I6L5F3EIVUP4LSQC6AOE6DU7VWXAURFVLHO52,GDUY7J7A33TQWOSOQGDO776GGLM3UQERL4J3SPT56F6YS4ID7MLDERI4"
const r = await fetch("/api/aggregate?wallets=GBGI5DB6EYA7W6BKVM7I6L5F3EIVUP4LSQC6AOE6DU7VWXAURFVLHO52,GDUY7J7A33TQWOSOQGDO776GGLM3UQERL4J3SPT56F6YS4ID7MLDERI4");
const data = await r.json();
console.log(data);
How Treasury States Work
Wallets are encoded into the URL query string, so treasury views are shareable and reproducible. No accounts or server-side storage are required. URLs act as treasury state snapshots.