# Scry Wallet Full Context Pro

> Scry Wallet Full Context Pro 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 one-call bundle of Solana wallet intelligence including forensics, transfer history, launch-window relationships, identity quarantine, and coverage metrics.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet-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-solanahub-de-6a6372ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VLNikuKSyFBs3kUdbaymF

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-solanahub-de-6a6372ee
```

Example prompt: Give me the full Scry wallet context bundle for HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK — I want the forensics, transfer tape, launch-window cluster relationships, identity quarantine status, and coverage all in one shot.

## When to prefer this

Use this endpoint when you need a comprehensive single-call wallet profile rather than calling multiple Scry endpoints individually. It is the best choice for orchestrators doing full due diligence on a Solana wallet — especially when you need forensics, transfer history, cluster relationships, and identity signals together in one response without managing multiple calls and merging results.

## Known failure modes

- Invalid or malformed Solana address returns error status
- Wallet with no on-chain history may return partial coverage
- Payment failure via x402 results in 402 response before data is returned
- Unsupported address type returns supported:false in response
- Timeout or upstream data unavailability returns partial status

## How this service works

Query-parameter alias for Scry Wallet Full Context Pro. Pass `address` to receive a one-call context bundle across wallet forensics, transfer tape, launch-window relationships, identity quarantine, and coverage. No API keys, no subscriptions; x402 exact payment per request.

## Output

A structured evidence bundle including wallet forensics summary, full transfer tape, launch-window counterpart relationships, identity quarantine flags, coverage and confidence scores, spend rationale, and agent decision support fields — all in a single response keyed to the queried Solana address.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "examples": [
        "HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK"
       ]
      },
      "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"
           ],
           "minimum": 0
          },
          "token_count_is_lower_bound": {
           "type": "boolean"
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-solanahub-de-6a6372ee/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)
