# AmanChain Wallet Portfolio

> AmanChain Wallet Portfolio is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.062207/call, status unknown (last checked 2026-09-15).

Returns a complete on-chain portfolio snapshot for any blockchain wallet address, including token balances, NFTs, and DeFi positions

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-wallet-portfolio
- Price: $0.062207/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-wallet-portfolio-dd9133ac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXPotE9WTsndSs1iTXrPB

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 amanchain-wallet-portfolio-dd9133ac -d '<json body>'
```

Example prompt: Can you pull up the complete on-chain portfolio for wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I want to see all token balances, NFTs, and DeFi positions?

## When to prefer this

Use this endpoint when you need a comprehensive, live on-chain portfolio snapshot for any wallet address without requiring an API key or account setup. Prefer it over centralized portfolio trackers when you need pay-per-call pricing, deterministic execution against live consensus state, and USDC micropayment settlement via x402.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Address with no on-chain activity may return empty portfolio
- Network congestion may cause delayed consensus state reads
- Incorrect serviceId field returns service-not-found error
- Payment failure via x402/USDC causes request rejection

## How this service works

Wallet Portfolio: complete on-chain portfolio for any address Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-wallet-portfolio","request":"<input>"}. No account, no API key.

## Output

A structured breakdown of all on-chain assets held by the specified wallet address, including token balances (ERC-20 and native), NFT holdings, DeFi positions (liquidity pools, staking, lending), and an aggregated portfolio value, fetched live from consensus state.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-wallet-portfolio\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-wallet-portfolio-dd9133ac/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
