# Scry Wallet Intelligence – Full Context Pro

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

Returns comprehensive intelligence on a Solana wallet address including funding lineage, identity labels, forensics, transfer history, confidence scoring, and agent decision support data.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet/%7Baddress%7D/full-context-pro
- Price: $0.18/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-intelligence-full-context-pro-2c32bf9f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z2fTcnuTfm9ZO0GAdzg5I

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-intelligence-full-context-pro-2c32bf9f
```

Example prompt: Pull the full Scry intelligence profile for Solana wallet HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK — I want the funding lineage, any linked X handles, holdings snapshot, and the agent decision support summary.

## When to prefer this

Choose this endpoint when you need the most comprehensive single-call intelligence on a Solana wallet — combining funding lineage, identity resolution, holdings forensics, behavioral scoring, and agent-ready decision support in one response. Prefer it over narrower sibling endpoints (bundler check, funding-lineage only) when you want a holistic risk or trust assessment of a wallet before engaging with it, trading with it, or routing funds to it.

## Known failure modes

- Wallet address not found in index — may return unsupported:true or empty evidence
- Malformed Solana address causes 400-level error
- Payment failure via x402 protocol prevents access
- Wallet indexed but with incomplete data — token_count_is_lower_bound:true indicates partial holdings scan
- Network or upstream pipeline timeout returning stale or no data

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

A JSON object containing: status and methodology metadata, a confidence score (0–1), evidence_pack with sourced on-chain data, forensics object (including holdings snapshot with token counts), transfer_tape with transaction history, context_summary, spend_rationale, funding lineage, launch_window_cluster, any resolved X-handles or identity labels, field provenance, and agent_decision_support fields to help an agent act on the data. Coverage and forensics objects contain multiple nested keys with full details available via the provider's full example URL.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-05-05T13:17:40Z",
  "caveat": "Evidence layer only. Not financial advice or a trading recommendation.",
  "status": "success",
  "address": "HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK",
  "product": "scry_wallet_full_context_pro",
  "sources": [
   "scry_evidence_index",
   "identity_label_cache",
   "transaction_evidence_cache",
   "evidence_pipeline"
  ],
  "coverage": "{object: 5 keys - full example via full_example_url}",
  "forensics": "{object: 9 keys - full example via full_example_url}",
  "supported": true,
  "methodology": "scry_wallet_full_context_pro_v1",
  "evidence_pack": {
   "contract": "scry_evidence_pack_v1",
   "_truncated": "full 7-key object via full_example_url"
  },
  "transfer_tape": "{object: 11 keys - full example via full_example_url}",
  "context_summary": "{object: 15 keys - full example via full_example_url}",
  "spend_rationale": "{object: 3 keys - full example via full_example_url}",
  "confidence_score": 0.86,
  "field_provenance": "{object: 6 keys - full example via full_example_url}",
  "launch_window_cluster": "{object: 5 keys - full example via full_example_url}",
  "agent_decision_support": "{object: 4 keys - full example via full_example_url}"
 }
}
```

## More

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