# 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 and returns its token holdings with total portfolio value in USD

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/wallet/:address
- 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-8f3a96a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3K7uPXEYpsrMVuYf3jzST

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-8f3a96a3
```

Example prompt: Can you scan the Base wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e and show me all its token holdings and the total portfolio value in USD?

## When to prefer this

Use this endpoint when you need a quick, cost-effective ($0.01 USDC) snapshot of a wallet's token holdings and total USD value on the Base chain. Prefer this over on-chain RPC calls when you want aggregated portfolio data with USD valuation without building your own price feed logic. Best for agents needing to assess a wallet's holdings on Base specifically rather than multi-chain portfolios.

## Known failure modes

- Invalid or malformed wallet address returns error
- Wallet address not found on Base chain returns empty holdings
- Network timeout or Base RPC unavailability causes request failure
- Payment failure (402) if USDC not available or x402 protocol not configured
- Rate limiting if too many requests in short period

## How this service works

Wallet portfolio scan and holdings analysis on Base

## Output

Returns a list of token holdings (tokens array) and the total portfolio value in USD (total_value_usd number) for the specified Base chain wallet address

## 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-8f3a96a3/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)
