# Scry Launch Window Cluster

> Scry Launch Window Cluster is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns co-execution cluster data for a Solana wallet during launch or high-activity windows, including Helius-normalized counterparties, bundler context, repeat patterns, and identity tags.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet/:address/launch-window-cluster
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-launch-window-cluster-876b9da1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vbaXLf1x1YWvGjJ--tIM2

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-launch-window-cluster-876b9da1
```

Example prompt: Can you pull the launch window cluster for Solana wallet HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK and show me which other wallets co-executed during the same high-activity window, including any bundler routing or repeat-cluster patterns?

## When to prefer this

Use this endpoint when you need to understand the cluster of wallets that co-executed around a specific Solana wallet during a token launch or high-activity window — especially for memecoin forensics, sniping detection, or coordinated-launch analysis. Prefer this over the general wallet dossier when the specific question is 'who else was in this launch?' rather than a full wallet profile. It is cheaper than the full cross-product context endpoint and more targeted than the broad wallet forensics call.

## Known failure modes

- Wallet address not found or unsupported chain returns status: error
- No launch-window activity detected for the address returns partial coverage
- Invalid Solana address format causes a 4xx input validation error
- Payment not processed or x402 header missing causes payment-required response
- Helius data temporarily unavailable causes partial status with reduced coverage

## How this service works

Returns who else executed in the same Solana launch or high-activity window: Helius-normalized counterparties, private-routing and bundler context, repeat-cluster patterns, identity tags when indexed, and local edge-gap reconciliation. Evidence layer only; no verdict or action instruction. No API keys, no subscriptions; x402 exact payment per request.

## Output

Returns an evidence pack containing: co-execution counterparties (Helius-normalized), private routing and bundler context, repeat-cluster patterns, identity tags where indexed, local edge-gap reconciliation data, a confidence score, and agent decision support metadata. Evidence only — no verdict or recommended action.

## 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"
     ],
     "properties": {
      "as_of": {
       "type": "string"
      },
      "in_db": {
       "type": "boolean"
      },
      "caveat": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "wallet": {
       "type": "object",
       "additionalProperties": true
      },
      "address": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "frozen_at": {
       "type": "string"
      },
      "supported": {
       "type": "boolean"
      },
      "is_example": {
       "type": "boolean"
      },
      "methodology": {
       "type": "string"
      },
      "fixture_note": {
       "type": "string"
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "confidence_score": {
       "type": "number"
      },
      "execution_window": {
       "type": "object",
       "additionalProperties": true
      },
      "field_provenance": {
       "type": "object",
       "additionalProperties": true
      },
      "monitoring_delta": {
       "type":
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-launch-window-cluster-876b9da1/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)
