# Scry Mint Risk Intelligence

> Scry Mint Risk Intelligence is a paid API for AI agents from scry.solanahub.de, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a risk score and evidence pack for a Solana token mint address, including confidence level, holder concentration, and creator network signals.

## Facts

- Endpoint: GET https://scry.solanahub.de/x402/mint/%7Bmint%7D/risk
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scry-mint-risk-intelligence-51d3fa98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jp3aSPkRl8Gx0QkBBHaBq

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-mint-risk-intelligence-51d3fa98
```

Example prompt: What's the risk score for Solana token mint JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN? I need the confidence level and any evidence about holder concentration or creator networks before I proceed.

## When to prefer this

Use this endpoint when you need a fast, evidence-backed risk score for a specific Solana token mint address prior to a swap, investment, or integration decision. Prefer this over general on-chain explorers when you need a structured, agent-consumable risk verdict with confidence scoring and creator network signals, and when you are operating in a no-API-key, x402-pay-per-call context.

## Known failure modes

- Unsupported or unknown mint address returns supported:false with limited evidence
- Mint not indexed returns low-confidence or empty evidence_pack
- Payment failure via x402 returns HTTP 402 and no data
- Invalid mint address format causes a validation error
- Network timeout or pipeline unavailability returns error status

## How this service works

Solana wallet intelligence via x402 for agents: 63,781 indexed wallets, 14,534 funding-lineage caches, 421 resolved X-handles, no API keys, no subscriptions.

## Output

A JSON object containing a risk label (LOW/MEDIUM/HIGH), numeric risk_score (0-1), confidence label and score, evidence_pack with supporting on-chain signals, agent_decision_support summary, creator wallet info, holder concentration data, sample size, methodology name, coverage metadata, and a spend_rationale explaining the assessment.

## 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": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "examples": [
        "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN"
       ]
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "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": {
      "beta": {
       "type": "boolean"
      },
      "mint": {
       "type": "string"
      },
      "risk": {
       "type": "string"
      },
      "as_of": {
       "type": "string"
      },
      "caveat": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "product": {
       "type": "string"
      },
      "sources": {
       "type": "array"
      },
      "coverage": {
       "type": "object",
       "additionalProperties": true
      },
      "supported": {
       "type": "boolean"
      },
      "confidence": {
       "type": "string"
      },
      "risk_score": {
       "type": "number"
      },
      "methodology": {
       "type": "string"
      },
      "sample_size": {
       "type": "object",
       "additionalProperties": true
      },
      "evidence_pack": {
       "type": "object",
       "additionalProperties": true
      },
      "creator_wallet": {},
      "spend_rationale": {
       "type": "object",
       "additionalProperties": true
      },
      "confidence_score": {
       "type": "number"
      },
      "evidence_items_count": {
       "type": "number"
      },
      "agent_decision_support": {
       "type": "object",
       "additionalProperties": true
      },
      "holder_concentration_basis": {},
      "holder_concentration_pct_proxy": {},
      "creator_in_known_creator_network": {
       "t
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "beta": true,
  "mint": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN",
  "risk": "LOW",
  "as_of": "2026-05-05T13:17:40Z",
  "caveat": "Risk intelligence only. Not financial advice or a trading recommendation.",
  "status": "success",
  "product": "scry_mint_risk_beta",
  "sources": [
   "mint_risk_pipeline",
   "transaction_evidence_cache"
  ],
  "coverage": "{object: 4 keys - full example via full_example_url}",
  "supported": true,
  "confidence": "HIGH",
  "risk_score": 0.108,
  "methodology": "sentinel_x402_mint_risk_v1_beta",
  "sample_size": "{object: 3 keys - full example via full_example_url}",
  "evidence_pack": {
   "contract": "scry_evidence_pack_v1",
   "_truncated": "full 6-key object via full_example_url"
  },
  "creator_wallet": null,
  "spend_rationale": "{object: 3 keys - full example via full_example_url}",
  "confidence_score": 0.9,
  "evidence_items_count": 2,
  "agent_decision_support": "{object: 4 keys - full example via full_example_url}",
  "holder_concentration_basis": null,
  "holder_concentration_pct_proxy": null,
  "creator_in_known_creator_network": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scry-mint-risk-intelligence-51d3fa98/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)
