# Scry Full-Context Pro Wallet Intelligence

> Scry Full-Context Pro Wallet Intelligence is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Returns a comprehensive, multi-source Solana wallet forensic dossier including Scry forensics, Helius transfer history, launch-window relationships, identity quarantine, KOL X-handle, and edge-gap reconciliation in a single composite call.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet/:address/full-context-pro
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-full-context-pro-wallet-intelligence-cb69f0be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mdwOk837VmcsScgGUm3Ov

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-full-context-pro-wallet-intelligence-cb69f0be
```

Example prompt: Pull the full Scry forensic dossier for Solana wallet HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK — I need their transfer tape, launch-window relationships, identity quarantine status, KOL handle if available, and the full evidence pack so I can make my own risk call.

## When to prefer this

Choose this endpoint when you need the most complete wallet intelligence picture available in a single call — covering forensics, transfer history, launch-window context, identity signals, and KOL relationships simultaneously. Prefer this over cheaper single-dimension endpoints when the research stakes are high enough to justify the $0.20 USDC cost, or when you are an orchestrator agent that wants to avoid multiple round-trips to individual Scry endpoints.

## Known failure modes

- Invalid or malformed Solana address returns error status
- Wallet with no on-chain history returns partial status with limited evidence
- Payment not fulfilled (x402) results in 402 Payment Required response
- Data provider (Helius/Scry) unavailability returns partial or error status
- Rate limiting or service overload may return 5xx responses

## How this service works

Edge-gap reconciliation first: measures how many of a Solana wallet's real transfer counterparties are missing from any single-call view (edge_gap_ratio, missing_local_edge_count) — the coverage gap a one-shot Helius/RPC lookup leaves behind — then fuses Scry wallet forensics, multi-hop funding lineage, launch-window relationship evidence, identity quarantine, KOL X-handle when available, and coverage/provenance/freshness timestamps into one composite response. Neutral evidence only, no verdicts; built for research, monitoring, and orchestrator agents that need to see what a single lookup would miss before caller-owned policy decisions. No API keys, no subscriptions; x402 exact payment per request.

## Output

A composite JSON evidence pack including: Scry wallet forensics, Helius-normalized transfer tape, launch-window co-participant evidence, identity quarantine flags, KOL X-handle (when available), edge-gap reconciliation data, a confidence score (0–1), agent decision support block, and coverage timestamps. Status field is one of success/partial/error.

## 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": [
        "HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK"
       ]
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "since_slot": {
       "type": "integer",
       "minimum": 0
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "product",
      "coverage",
      "evidence_pack",
      "agent_decision_support",
      "methodology",
      "forensics"
     ],
     "properties": {
      "as_of": {
       "type": "string"
      },
      "caveat": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "address": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "forensics": {
       "type": "object",
       "required": [
        "holdings_snapshot"
       ],
       "properties": {
        "holdings_snapshot": {
         "type": [
          "object",
          "null"
         ],
         "required": [
          "snapshot_completeness",
          "token_count",
          "token_count_lower_bound",
          "token_count_is_lower_bound"
         ],
         "properties": {
          "token_count": {
           "type": [
            "integer",
            "null"
           ],
           "minimum": 0
          },
          "snapshot_completeness": {
           "enum": [
            "complete",
            "bounded_lower_bound",
            "unverified"
           ],
           "type": "string"
          },
          "token_count_lower_bound": {
           "type": [
            "integer",
            "null"
           ],
           "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-full-context-pro-wallet-intelligence-cb69f0be/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)
