# Scry Wallet Quick Flag

> Scry Wallet Quick Flag is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Performs a sub-cent rapid screen of a Solana wallet address returning quarantine status, bundler hint, identity, and data freshness to support triage before deeper investigation.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/wallet-quick-flag
- Price: $0.001/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-ec295d51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KVIj0DNnXWz5ayTT2EeQ4

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

Example prompt: Can you do a quick wallet screen on HvFdDWS3RqymRAVx1ZdoL2RjiC38r5dtt19Z8op5jqDK and tell me if it's quarantined, looks like a bundler, and how fresh the data is before I decide whether to dig deeper?

## When to prefer this

Use this endpoint as the first cheap triage step before invoking costlier Scry wallet intelligence or dossier products. It is ideal when you need a rapid go/no-go signal on a wallet — quarantine status, bundler suspicion, identity hint, and data freshness — for under a cent per call with no API key or subscription required via x402 pay-per-request.

## Known failure modes

- Invalid or malformed Solana address returns an error status in the status field
- Unsupported wallet or chain returns supported: false
- Partial data availability returns status: partial with reduced coverage
- Payment not included or incorrect amount results in HTTP 402 response
- Missing required address query parameter returns a validation error

## How this service works

Query-parameter alias for Scry Wallet Quick Flag. Pass `address` to receive a sub-cent wallet screen: quarantine status, bundler hint, identity, and freshness before choosing deeper wallet evidence products. No API keys, no subscriptions; x402 exact payment per request.

## Output

Returns a compact evidence pack including: quarantine/flag status, bundler hint, identity signals, data freshness timestamp, confidence score (0-1), coverage metadata, spend rationale, and an agent_decision_support object for policy-based downstream decisions. Also includes the product name, methodology, and data sources used.

## 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"
       ]
      }
     }
    }
   },
   "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"
      },
      "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"
      },
      "quick_flags": {
       "type": "object",
       "additionalProperties": true
      },
      "fixture_note": {
       "type": "string"
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "confidence_score": {
       "type": "number"
      },
      "field_provenance": {
       "type": "object",
       "additionalProperties": true
      },
      "evidence_pathways": {
       "type": "object",
       "additionalProperties": true
      },
      "source_updated_at": {
       "type": "string"
      },
      "workflow_continuation": {
       "type": "object",
       "additionalProperties": true
      },
      "agent_decision_support": {
       "type
… (truncated)
```

## More

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