# DeepBlueBase Wallet Portfolio Scanner

> DeepBlueBase Wallet Portfolio Scanner is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Scans a Base chain wallet address to return token holdings and total portfolio value in USD

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/wallet/:var1
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-a7e41458
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x3Oo52mtI-G0Tf7wc7Odu

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 api-deepbluebase-xyz-a7e41458
```

Example prompt: Can you scan the Base wallet 0x4a5b6c7d8e9f0a1b2c3d4e5f6a7b8c9d0e1f2a3b and show me all the tokens it holds along with the total portfolio value in USD?

## When to prefer this

Use this endpoint when you need a quick, cost-effective portfolio snapshot for a specific Base chain wallet, especially when you want both individual token holdings and aggregated USD value in a single call. Prefer this over general blockchain explorers when you need structured, analysis-ready data specifically on the Base L2 network.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Wallet with no Base chain activity may return empty tokens array and zero total value
- Rate limiting or payment failure (x402) if USDC payment is not processed
- Network issues with Base chain RPC may cause timeouts or stale data
- Newly created wallets with no indexed transactions may show incomplete holdings

## How this service works

Wallet portfolio scan and holdings analysis on Base

## Output

Returns an array of token holdings (each with token details) and a total_value_usd number representing the aggregate USD value of all tokens in the wallet on the Base chain.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tokens": {
       "type": "array"
      },
      "total_value_usd": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

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