# 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).

Returns all token holdings, quantities, and total USD/ETH value for a given wallet address on the Base chain

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/wallet/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
- 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-a0863473
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eLEhtJY6TTk0NqiQ0M7rC

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-a0863473
```

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

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of all token holdings and total portfolio value for a specific wallet address on the Base chain. Prefer this over individual token price endpoints when you want a full portfolio view in one call. Best for portfolio dashboards, whale watching on Base, or verifying asset composition of a specific address.

## Known failure modes

- Invalid or malformed wallet address returns error or empty result
- Wallet with no Base chain activity returns empty token array with zero values
- Network or RPC issues may return 5xx errors
- Rate limiting or payment failure returns 402 or 429
- Unknown token contracts may be omitted from holdings list

## How this service works

Wallet portfolio scan and holdings analysis on Base

## Output

Returns a JSON object with the wallet address, chain ('base'), number of tokens held (count), an array of token objects with individual holdings details, total portfolio value in ETH (total_value_eth), and total portfolio value in USD (total_value_usd).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "chain",
  "count",
  "tokens",
  "wallet",
  "total_value_eth",
  "total_value_usd"
 ],
 "properties": {
  "chain": {
   "type": "string"
  },
  "count": {
   "type": "number"
  },
  "tokens": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "wallet": {
   "type": "string"
  },
  "total_value_eth": {
   "type": "number"
  },
  "total_value_usd": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-a0863473/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)
