# EMC2 AI Wallet Holdings Raw

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

Returns a complete portfolio breakdown of all token holdings and USD values for a given wallet address.

## Facts

- Endpoint: POST https://emc2ai.io/x402/bitquery/wallet-holdings/raw
- Price: $0.400000/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-447f93ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zl3Fnj43X7IfPH37On1TT

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-447f93ea -d '<json body>'
```

Example prompt: Can you give me a full portfolio breakdown of wallet 0x742d35Cc6634C0532925a3b8D4C9b5e9f1a2b3c4 — I want to see every token it holds and the current USD value of each position.

## When to prefer this

Use this endpoint when you need a complete, raw token-by-token portfolio snapshot for a specific wallet address and want USD valuations alongside balances. Prefer this over leaderboard or whale endpoints when your target is a single specific wallet rather than a ranked set of traders.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Wallet address with no holdings returns an empty portfolio
- Unsupported blockchain network returns no data
- Payment not completed results in 402 rejection
- Bitquery upstream timeout or rate limit causes failure
- Wallet on an unsupported chain returns empty or error

## How this service works

Complete wallet portfolio breakdown showing all token holdings and USD values.

## Output

A raw JSON response containing a complete list of all token holdings for the queried wallet, including token names, symbols, quantities, and their current USD values, sourced from Bitquery on-chain data.

## 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)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/emc2ai-io-447f93ea/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)
