---
name: scry.solanahub.de
description: scry.solanahub.de provides Solana-specific risk intelligence and network telemetry via paid per-call endpoints. It covers wallet forensics, bundler-risk detection, mint risk scoring, wallet quick-flag prefiltering, and live priority-fee estimates sourced from Helius and the Scry Sentinel pipeline.
host: scry.solanahub.de
---

# scry.solanahub.de

Scry is a Solana-focused risk intelligence host serving agents that need to assess wallets, tokens, or network conditions before committing to transactions or capital exposure. It offers a tiered wallet analysis stack (quick flag → bundler check → full forensics) and a mint risk pipeline, complemented by live priority-fee snapshots. It does not execute trades, provide financial advice, or support non-Solana assets.

## When to use this host

Use scry.solanahub.de when an agent needs Solana-specific risk intelligence on wallets or mints, or needs a current priority-fee estimate before transaction submission. The tiered wallet stack (quick-flag → bundler-check → forensics) is well-suited for cost-sensitive pipelines that want to escalate analysis only when needed. Use fetch-mint-risk-assessment as a preflight before any token swap or purchase on Solana. Do not use this host for non-Solana assets, real-time streaming data, trade execution, balance lookups, or financial advice. For continuous fee monitoring, a WebSocket-based Solana RPC provider is more appropriate than the single-shot priority-fee endpoint here. This host has no price feed, DEX routing, or portfolio tracking capabilities.

## Capabilities

### Network Fee Telemetry

Provides a single-shot snapshot of current Solana priority-fee estimates in micro-lamports per compute unit, scoped to global presets or specific account keys, enabling agents to set appropriate compute-budget instructions before submitting transactions.

- **`fetch-solana-priority-fees-live`** — Returns live Solana network priority-fee estimates in micro-lamports per compute unit for global, Jupiter, Raydium, or custom account keys, sourced from Helius.

### Wallet Risk Triage

Offers a cost-tiered stack for assessing Solana wallet risk: a cheap quick-flag prefilter for identity and quarantine status, a bundler-risk signal check, and a full forensic deep-dive for funding flows, clusters, and red flags.

- **`fetch-wallet-quick-flag`** — Returns a low-cost prefilter risk and status snapshot for a Solana wallet address, including identity status, quarantine flags, transfer cache stats, coverage confidence, and suggested follow-up queries.
- **`check-wallet-bundler-risk`** — Checks a Solana wallet address against Sentinel data and returns bundler-risk signals including risk level, confidence score, coverage details, and evidence-oriented decision support.
- **`fetch-wallet-forensics`** — Returns Solana wallet forensic intelligence including risk summary, coverage status, evidence pack, and agent decision support for a given wallet address.

### Mint Risk Assessment

Scores a Solana mint address for risk using the Scry Sentinel pipeline, surfacing holder concentration, dev wallet activity, liquidity pool signals, and top-holder sell pressure before a swap or purchase.

- **`fetch-mint-risk-assessment`** — Returns a risk score, confidence level, sub-scores, creator context, and evidence items for a Solana mint address using the Scry sentinel pipeline.

## Workflows

### Wallet Risk Escalation

*Use when an agent needs to assess a Solana wallet's risk profile cost-efficiently, starting cheap and escalating only when signals warrant deeper investigation.*

1. **`fetch-wallet-quick-flag`** — Run a fast, low-cost prefilter to check identity status, quarantine flags, and whether the wallet is indexed before spending on deeper queries.
2. **`check-wallet-bundler-risk`** — If the quick flag does not quarantine the wallet outright, check for bundler-risk signals and confidence score to determine whether forensic depth is warranted.
3. **`fetch-wallet-forensics`** — If bundler-risk or quick-flag signals are ambiguous or elevated, retrieve the full forensic evidence pack including funding flows, coordination peers, and red flags.

### Mint-to-Wallet Pre-Trade Check

*Use when an agent needs to vet both a token mint and its associated creator or top-holder wallets before executing a swap or purchase.*

1. **`fetch-mint-risk-assessment`** — Score the target mint for holder concentration, dev wallet activity, and liquidity signals to decide whether to proceed.
2. **`fetch-wallet-quick-flag`** — Run a quick-flag check on the creator or flagged top-holder wallet addresses surfaced in the mint risk response.
3. **`fetch-wallet-forensics`** — If quick-flag results are ambiguous for high-risk wallets, escalate to full forensics to assess funding flows and coordination evidence.

### Transaction Preflight with Fee Estimation

*Use when an agent needs to both vet a counterparty wallet and set an appropriate compute-budget instruction before submitting a Solana transaction.*

1. **`fetch-wallet-quick-flag`** — Prefilter the counterparty wallet for quarantine or identity flags before proceeding with the transaction.
2. **`fetch-solana-priority-fees-live`** — Fetch a current priority-fee snapshot for the relevant account keys to set the compute-budget instruction appropriately.

## Skill reference

### `fetch-solana-priority-fees-live`

**Priority Fees Live** — Returns live Solana network priority-fee estimates in micro-lamports per compute unit for global, Jupiter, Raydium, or custom account keys, sourced from Helius.

*Use when:* Use when an agent needs a current Solana priority-fee snapshot before building, simulating, or submitting a transaction and needs to set an appropriate compute-budget instruction without holding API keys or subscriptions.

*Not for:* Do not use as a guarantee of transaction inclusion or as financial advice. Do not use for streaming/continuous fee monitoring — this is a single-shot paid snapshot with a 20-second TTL.

**Inputs:**

- `preset` (string, required) — Fee estimate preset scope: 'global', 'jupiter_swap', or 'raydium_amm'. Defaults to global. Overridden by account_keys when provided.
- `account_keys` (string, required) — Optional comma-separated Solana account public keys. When provided, overrides the preset and returns program-specific fee estimates.
- `lookback_slots` (number, required) — Number of recent slots to include in the Helius fee estimate. Clamped to 1–150. Defaults to 50.

**Returns:** Returns status=success with recommended_micro_lamports=100, full fee levels (min/low/medium/high/veryHigh/unsafeMax) in micro-lamports per compute unit, coverage metadata, and a freshness timestamp from Helius.

**Example:** `GET https://scry.solanahub.de/x402/network/priority-fees-live?preset=global&lookback_slots=50`

---

### `fetch-wallet-quick-flag`

**Quick Wallet Flag** — Returns a low-cost prefilter risk and status snapshot for a Solana wallet address, including identity status, quarantine flags, transfer cache stats, coverage confidence, and suggested follow-up queries.

*Use when:* Use when an agent needs a fast, cheap first-pass check on a Solana wallet before committing to deeper forensic queries — e.g., to triage whether a wallet is quarantined, indexed, or has known identity labels.

*Not for:* Do not use as a complete wallet risk verdict or financial recommendation. For deep on-chain analysis use the forensics or transfer-tape endpoints instead. Not suitable for real-time balance lookups.

**Inputs:**

- `address` (string, required) — The Solana wallet address to check, passed as a path parameter in the URL.

**Returns:** Returns a quick-flag snapshot with identity status, quarantine flags, cached transfer stats, coverage confidence, field provenance, and suggested next queries for deeper wallet analysis.

**Example:** `GET https://scry.solanahub.de/x402/wallet/X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ/quick-flag`

---

### `check-wallet-bundler-risk`

**Scry Wallet Bundler Check** — Checks a Solana wallet address against Sentinel data and returns bundler-risk signals including risk level, confidence score, coverage details, and evidence-oriented decision support.

*Use when:* Use when an agent needs a cheap pre-filter to determine whether a Solana wallet shows bundler-risk signals before committing to more expensive forensics or capital exposure decisions.

*Not for:* Do not use as a complete wallet dossier or financial advice. Not a substitute for full forensics — use /x402/wallet/:address/forensics when funding flows, clusters, red flags, or coordination peers are needed.

**Inputs:**

- `address` (string, required) — Solana wallet address to check for bundler-risk signals.

**Returns:** Returns risk level, confidence score, in_db status, coverage details, a structured evidence pack with observed facts and derived observations, and agent decision support with escalation triggers.

**Example:** `GET https://scry.solanahub.de/x402/wallet/X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ/bundler-check`

---

### `fetch-wallet-forensics`

**Scry Wallet Forensics** — Returns Solana wallet forensic intelligence including risk summary, coverage status, evidence pack, and agent decision support for a given wallet address.

*Use when:* Use when an agent needs to assess the risk profile, coverage quality, or forensic context of a Solana wallet address before applying monitoring, compliance, or policy-based decisions.

*Not for:* Do not use for trade execution logic or financial advice; this endpoint provides monitoring evidence only. Do not use for non-Solana addresses.

**Inputs:**

- `address` (string, required) — Solana wallet address to run forensic analysis on. Provided as a path parameter in the URL.

**Returns:** Returns a forensics object with risk_summary (level, confidence, explanation), coverage metadata, a structured evidence_pack with observed facts and suggested next queries, and an agent_decision_support block with decision options and escalation triggers.

**Example:** `GET https://scry.solanahub.de/x402/wallet/X4o2D8op42a2jcNJJVZcDq3eYivh1oR9XiezPWCXosZ/forensics`

---

### `fetch-mint-risk-assessment`

**Scry Mint Risk Assessment** — Returns a risk score, confidence level, sub-scores, creator context, and evidence items for a Solana mint address using the Scry sentinel pipeline.

*Use when:* Use when an agent needs a preflight risk check on a Solana mint address before executing a swap, purchase, or deeper wallet analysis — specifically to surface holder concentration, dev wallet activity, liquidity pool signals, and top-holder sell pressure.

*Not for:* Do not use as a standalone trading or execution decision; the response explicitly states it is risk intelligence, not financial advice. Not suitable for non-Solana tokens or for real-time streaming price risk.

**Inputs:**

- `mint` (string, required) — Solana mint address to assess risk for. Passed as a path parameter in the URL.

**Returns:** Returns a risk label (e.g. LOW), numeric risk_score, HIGH/LOW confidence, sub-scores for five risk dimensions, creator wallet context, a list of evidence items with severity, and a structured agent_decision_support block.

**Example:** `GET https://scry.solanahub.de/x402/mint/EfPoo4wWgxKVToit7yX5VtXXBrhao4G8L7vrbKy6pump/risk`

---
