# Scry Wallet Bundler Check

> Scry Wallet Bundler Check is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Checks whether a Solana wallet address exhibits bundler or private-routing behavior, returning risk classification, confidence score, and evidence pack.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet/%7Baddress%7D/bundler-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-wallet-bundler-check-3fa479b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vi8EXGx29PGnakTm3XHCs

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 scry-wallet-bundler-check-3fa479b6
```

Example prompt: Can you run a bundler check on this Solana wallet — HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp — and tell me the risk level, whether it's a known bundler, and how confident you are?

## When to prefer this

Use this endpoint when you need to determine whether a specific Solana wallet is a bundler or uses private transaction routing (e.g. Jito tips, MEV activity). It is purpose-built for Solana wallet risk classification with a large indexed wallet database and no API key requirements — prefer it over general blockchain explorers when you need structured, agent-ready bundler evidence with confidence scoring.

## Known failure modes

- Invalid or malformed Solana address returns error status
- Wallet not found in the 63,781-wallet index returns in_db: false with reduced confidence
- Payment not received via x402 results in 402 Payment Required response
- Network timeout from upstream Helius or bundler-registry data sources
- Rate limiting if payment header is missing or malformed

## How this service works

Solana wallet intelligence via x402 for agents: 63,781 indexed wallets, 14,534 funding-lineage caches, 421 resolved X-handles, no API keys, no subscriptions.

## Output

Returns a JSON object with: risk level (e.g. MID/HIGH/LOW), bundler pattern (e.g. MULTI_TIP), confidence level and numeric score (0-1), whether the wallet is in the database, primary service observed, total SOL tipped, list of data sources consulted, a compact evidence pack, methodology identifier, and an agent_decision_support object with structured policy-relevant signals. Also includes a caveat disclaimer and timestamp.

## 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",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "examples": [
        "HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp"
       ]
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "product",
      "coverage",
      "evidence_pack",
      "agent_decision_support",
      "methodology"
     ],
     "properties": {
      "risk": {
       "type": "string"
      },
      "as_of": {
       "type": "string"
      },
      "in_db": {
       "type": "boolean"
      },
      "caveat": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "pattern": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "supported": {
       "type": "boolean"
      },
      "confidence": {
       "type": "string"
      },
      "methodology": {
       "type": "string"
      },
      "sample_size": {
       "type": "object",
       "additionalProperties": true
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "tip_total_sol": {
       "type": "number"
      },
      "primary_service": {
       "type": "string"
      },
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "confidence_score": {
       "type": "number"
      },
      "field_provenance": {
       "type": "object",
       "additionalProperties": true
      },
      "services_observed": {
       "type": "object",
       "additionalProperties": true
      },
      "agen
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": "MID",
  "as_of": "2026-07-09T20:16:26.371Z",
  "in_db": true,
  "caveat": "Risk intelligence only. Not financial advice or a trading recommendation.",
  "status": "success",
  "address": "HYWo71Wk9PNDe5sBaRKazPnVyGnQDiwgXCFKvgAQ1ENp",
  "pattern": "MULTI_TIP",
  "product": "scry_wallet_bundler_check",
  "sources": [
   "scry-wallet-db",
   "scry-bundler-registry",
   "helius-identity"
  ],
  "coverage": "{object: 2 keys - full example via full_example_url}",
  "supported": true,
  "confidence": "HIGH",
  "methodology": "sentinel_x402_bundler_check_v1",
  "sample_size": "{object: 3 keys - full example via full_example_url}",
  "evidence_pack": {
   "contract": "scry_evidence_pack_v1",
   "_truncated": "full 9-key object via full_example_url"
  },
  "tip_total_sol": 0.142,
  "primary_service": "multi",
  "spend_rationale": "{object: 3 keys - full example via full_example_url}",
  "confidence_score": 0.9,
  "field_provenance": "{object: 6 keys - full example via full_example_url}",
  "services_observed": "{object: 3 keys - full example via full_example_url}",
  "agent_decision_support": "{object: 5 keys - full example via full_example_url}"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-wallet-bundler-check-3fa479b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scry.solanahub.de](https://www.zero.xyz/host/scry.solanahub.de/llms.txt)
