# 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 same-window counterparties, private-routing context, local edge-gap reconciliation, and cluster hints for a given Solana wallet address without any verdict or execution instruction.

## Facts

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

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-fe17d2d6
```

Example prompt: Can you pull the launch-window cluster data for the Solana wallet HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK — I want to see its same-window counterparties, private-routing context, and any cluster hints from Scry?

## When to prefer this

Use this endpoint when you need to identify wallets that co-launched or were active in the same launch window as a target Solana address, particularly for memecoin due diligence, coordinated-trading detection, or cluster-based counterparty research. Prefer this over generic wallet intelligence endpoints when your specific question is about launch-window timing clusters and routing context rather than transfer history, KOL identity, or quick-flag screening.

## Known failure modes

- Missing or invalid 'address' query parameter returns a 400-level error
- Unrecognized or uncrawled wallet address may return partial coverage with lower confidence score
- Payment failure via x402 protocol returns 402 Payment Required with no data
- Network or upstream data unavailability may return status: 'error' or status: 'partial'
- Malformed Solana address string (wrong length or encoding) likely returns validation error

## How this service works

Query-parameter alias for Scry Launch-Window Cluster. Pass `address` to receive same-window counterparties, private-routing context, local edge-gap reconciliation, and cluster hints without any verdict or execution instruction. No API keys, no subscriptions; x402 exact payment per request.

## Output

Returns a JSON evidence pack containing same-window counterparties, private-routing context, local edge-gap reconciliation data, cluster hints, a confidence score (0-1), coverage metadata, agent decision support fields, and a response timestamp — no verdict or execution instruction included.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK"
  }
 }
}
```

## 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"
     ],
     "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": "object",
       "additionalProperties": true
      },
      "evidence_pathways": {
       "type"
… (truncated)
```

## More

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