# Wallet Intel Dossier Summary

> Wallet Intel Dossier Summary is a paid API for AI agents from wallet-intel-meta-mcp.mtree.workers.dev, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a machine-readable intelligence dossier summary for a given crypto wallet address, including provenance and on-chain evidence

## Facts

- Endpoint: POST https://wallet-intel-meta-mcp.mtree.workers.dev/v1/wallet/dossier_summary
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wallet-intel-dossier-summary-3abbb84d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e-xnxxdfZmj2K3NQj5fa6

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 wallet-intel-dossier-summary-3abbb84d -d '<json body>'
```

Example prompt: Pull a full intelligence dossier summary for wallet address 0x1234...abcd on Base — I need the provenance details, on-chain evidence, and all machine-readable fields so I can assess whether this address is trustworthy.

## When to prefer this

Use this endpoint when you need structured, machine-readable on-chain intelligence about a specific wallet address, including provenance and evidence fields suited for autonomous agent consumption. Prefer this over generic block explorers when you need a summarized, AI-ready dossier rather than raw transaction data, and when you can pay 0.50 USDC per call via x402 on Base.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Payment of 0.50 USDC on Base not provided or rejected results in 402 Payment Required
- Unsupported blockchain network returns an error
- Wallet address not found or with no on-chain history may return empty evidence fields
- Rate limiting or service unavailability returns 5xx error

## How this service works

Paid concise wallet dossier for agents that need an immediate use/avoid/manual-review recommendation before signing a transaction, funding an agent wallet, or allowing x402 autopay. Price 0.50 USDC on Base via x402. Demo/preview: https://wallet-intel-meta-mcp.mtree.workers.dev/demo/dossier_summary. Contact: https://wallet-intel-meta-mcp.mtree.workers.dev/contact.

## Output

A JSON object containing a wallet dossier summary with provenance metadata, route-specific on-chain evidence, risk signals, and structured machine-readable intelligence fields about the queried wallet address.

## Example request

```json
{
 "input": {
  "body": {
   "chain": "ethereum",
   "address": "0x1234567890123456789012345678901234567890"
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "arbitrum",
        "optimism",
        "polygon"
       ],
       "type": "string"
      },
      "chains": {
       "type": "array",
       "items": {
        "enum": [
         "ethereum",
         "base",
         "arbitrum",
         "optimism",
         "polygon"
        ],
        "type": "string"
       }
      },
      "address": {
       "type": "string",
       "pattern": "^0x[0-9a-fA-F]{40}$"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wallet-intel-dossier-summary-3abbb84d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wallet-intel-meta-mcp.mtree.workers.dev](https://www.zero.xyz/host/wallet-intel-meta-mcp.mtree.workers.dev/llms.txt)
