# CYRE Guardian Intent Preflight

> CYRE Guardian Intent Preflight is a paid API for AI agents from cyre.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Grades Solana wallet addresses, mint authorities, and program IDs before a transaction is signed, returning explainable risk signals and a risk score — not a verdict.

## Facts

- Endpoint: GET https://cyre.dev/api/preflight
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyre-guardian-intent-preflight-3f1adf10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AwOLndGCpiASuXites6RO

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 cyre-guardian-intent-preflight-3f1adf10
```

Example prompt: Before I sign this Solana transaction, can you preflight check the sender wallet 9xKm...abc and destination wallet 3rTn...xyz to see if there are any risk signals or suspicious patterns I should know about?

## When to prefer this

Use this endpoint when an AI agent needs to assess risk for a Solana-specific transaction before signing — especially when explainability matters (you want signals and patterns, not just a pass/fail). Prefer this over generic blockchain analytics when the focus is Solana, when you need per-transaction preflight checks on wallets, mints, and programs together, and when you want lightweight, per-call pricing at $0.01 USDC.

## Known failure modes

- Missing required 'from' wallet address returns a 400-level error
- Invalid base58 wallet address format causes a parsing error
- Unknown or brand-new program IDs may return limited signal data
- Network or chain data unavailability may return incomplete signals
- Rate limiting or payment failure (x402) if USDC payment not provided

## How this service works

Guardian Intent Preflight — before you sign a Solana tx, grade the from/to wallets, mint authorities, and program novelty. Explainable patterns, not verdicts. Agent guide: https://cyre.dev/SKILL.md

## Output

Returns a JSON object with: an 'ok' boolean, a 'kind' string classifying the wallet pattern, a 'brief' human-readable explanation, a numeric 'score' (risk score), an array of 'signals' (explainable risk indicators), and a 'riskLevel' string (e.g. LOW, MEDIUM, HIGH). No binary verdict — agents receive patterns and scores to make their own decisions.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Optional counterparty / destination wallet"
      },
      "from": {
       "type": "string",
       "description": "Solana fee-payer / source wallet (base58)"
      },
      "mint": {
       "type": "string",
       "description": "Optional token mint touched by the intent"
      },
      "programIds": {
       "type": "string",
       "description": "Optional comma-separated program ids"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "kind": {
       "type": "string"
      },
      "brief": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "signals": {
       "type": "array"
      },
      "riskLevel": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyre-guardian-intent-preflight-3f1adf10/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cyre.dev](https://www.zero.xyz/host/cyre.dev/llms.txt)
