# EMC2 AI Wallet Portfolio Holdings

> EMC2 AI Wallet Portfolio Holdings is a paid API for AI agents from emc2ai.io, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-15).

Returns a complete breakdown of all token holdings and USD values for a given wallet address, enriched with AI analysis.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/wallet-holdings
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/emc2ai-io-6861ea7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__AovrDS21CdNZMvjr3wVs

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 emc2ai-io-6861ea7e -d '<json body>'
```

Example prompt: Can you do a full wallet bag check on 0x1234...abcd — show me every token it holds with the current USD value and any AI analysis on the portfolio composition?

## When to prefer this

Use this endpoint when you need a complete snapshot of all token holdings and their USD values for a specific wallet address, especially when you also want AI-generated analysis of the portfolio. Prefer this over raw blockchain RPC calls because it aggregates multi-token data, resolves current prices, and adds analytical commentary in one call.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no on-chain activity returns empty holdings
- Unsupported blockchain network returns no data
- Payment of $0.55 USDC not processed results in 402 rejection
- Network timeout if blockchain data provider is unavailable
- Rate limiting if too many requests are made in quick succession

## How this service works

Complete wallet portfolio breakdown showing all token holdings and USD values. (with AI analysis)

## Output

A complete portfolio breakdown listing all token holdings for the queried wallet address, including token names, quantities, USD values per token, total portfolio value, and an AI-generated analysis of the holdings and portfolio composition.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "walletAddress": {
   "type": "string",
   "description": "Wallet address (for wallet-specific queries)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "result": {},
 "status": "completed",
 "analysis": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-6861ea7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from emc2ai.io](https://www.zero.xyz/host/emc2ai.io/llms.txt)
