# CryptoIntel Portfolio — Base Wallet Holdings Breakdown

> CryptoIntel Portfolio — Base Wallet Holdings Breakdown is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns ETH balance, top token holdings, and basic exposure summary for a given wallet address on the Base network

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/portfolio
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-portfolio-base-wallet-holdings-breakdown-7490717c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3xnTcL71Cn0hD2361SHFG

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 cryptointel-portfolio-base-wallet-holdings-breakdown-7490717c
```

Example prompt: Can you pull up the full portfolio breakdown for Base wallet 0x4e5F3b6c2A9d1F8e7C0bA3D2E5F6G7H8I9J0K1L2 — I want to see the ETH balance and what tokens it's holding?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of what tokens and ETH a specific Base wallet holds, especially for portfolio analysis, due diligence on a wallet, or building exposure summaries. Prefer this over the premium bundle when you only need holdings data and want to minimize cost.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Wallet address not on Base network may return empty or zero balances
- Rate limiting or payment failure (x402) if USDC payment is not processed
- Newly created wallet with no activity may return minimal data
- Network or upstream RPC timeout resulting in a 5xx error

## How this service works

Wallet holdings breakdown on Base: ETH balance, tx count

## Output

Returns a JSON object with the wallet's ETH balance on Base, a list of top token holdings with quantities/values, and a basic exposure summary indicating the wallet's crypto asset distribution.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x1234567890123456789012345678901234567890"
  }
 }
}
```

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-portfolio-base-wallet-holdings-breakdown-7490717c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
