# b0x402 Wallet Profile — EVM Wallet Profiling API

> b0x402 Wallet Profile — EVM Wallet Profiling API is a paid API for AI agents from x402-cf-worker.mulberry-boar.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns an on-chain profile for an EVM wallet address, including transaction count, net worth in USD, and activity timestamps, paid via x402 USDC micropayment.

## Facts

- Endpoint: GET https://x402-cf-worker.mulberry-boar.workers.dev/v1/wallet-profile
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/b0x402-wallet-profile-evm-wallet-profiling-api-346ea841
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ew6--XThW15bt5vbz7Lf1

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 b0x402-wallet-profile-evm-wallet-profiling-api-346ea841
```

Example prompt: Can you pull up the on-chain profile for wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I want to know its total transaction count, net worth in USD, and when it first and last appeared on-chain?

## When to prefer this

Use this endpoint when you need a quick, structured on-chain profile for any EVM-compatible wallet address — including net worth, activity age, and transaction volume — and can pay $0.10 USDC per call via the x402 micropayment standard. Prefer this over general blockchain explorers when you need structured JSON output suitable for agent workflows rather than human-readable UIs.

## Known failure modes

- Invalid or malformed wallet address (not matching 0x + 40 hex chars) returns a validation error
- Wallet address has no on-chain history — may return zero values or empty timestamps
- Payment failure via x402 USDC protocol returns 402 Payment Required
- Rate limiting or worker timeout returns 5xx error
- Network or Cloudflare worker unavailability causes request failure

## How this service works

AI-powered crypto intelligence — meme coin signals, DeFi sentiment, market equilibrium, wallet profiling. Pay per call in USDC on Base via the x402 standard.

## Output

Returns a JSON object with the queried wallet address, total on-chain transaction count, estimated net worth in USD, ISO timestamps for first and last observed transactions, and the timestamp of when the profile was fetched.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "pattern": "^0x[a-fA-F0-9]{40}$",
       "description": "EVM wallet address (0x...)"
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": true
  },
  "output": {
   "type": "object",
   "required": [
    "address",
    "tx_count",
    "net_worth_usd",
    "timestamp"
   ],
   "properties": {
    "address": {
     "type": "string",
     "description": "Queried wallet address"
    },
    "tx_count": {
     "type": "integer",
     "description": "Total on-chain tx count"
    },
    "last_seen": {
     "type": "string",
     "description": "ISO timestamp of latest tx"
    },
    "timestamp": {
     "type": "string",
     "description": "ISO timestamp of profile fetch"
    },
    "first_seen": {
     "type": "string",
     "description": "ISO timestamp of first tx"
    },
    "net_worth_usd": {
     "type": "number",
     "description": "Net worth in USD"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "address": "0x...",
 "tx_count": 0,
 "last_seen": "ISO",
 "timestamp": "ISO",
 "first_seen": "ISO",
 "net_worth_usd": 0
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/b0x402-wallet-profile-evm-wallet-profiling-api-346ea841/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-cf-worker.mulberry-boar.workers.dev](https://www.zero.xyz/host/x402-cf-worker.mulberry-boar.workers.dev/llms.txt)
