# CYRE Guardian Passport

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

Issues a signed, expiring Ed25519-attested risk passport for a Solana address, including a 0-100 risk score, explainable signals, and a verifiable token presentable to counterparties.

## Facts

- Endpoint: GET https://cyre.dev/api/passport
- Price: $0.005/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-passport-f04862ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_53Sc4sNK0c41nOG7qMfKr

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-passport-f04862ca
```

Example prompt: Can you generate a Guardian Passport for the Solana wallet address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU so I can show its risk score and signed attestation to a counterparty?

## When to prefer this

Choose this endpoint when you need a portable, verifiable, signed attestation of a Solana address's risk profile that can be presented to a third party — not just a raw score. It is preferable over a plain address-profile lookup when you need the Ed25519-signed token for audit trails, counterparty presentation, or protocol onboarding flows. Use it when explainability (signal breakdown) and shareability (the passport token) both matter.

## Known failure modes

- Invalid or malformed base58 address returns an error response
- Address with no on-chain history may return minimal signals or insufficient data for scoring
- Attestation token expires after issuance; expired tokens will fail verification at /api/passport/verify
- Payment failure (x402) blocks the request if USDC balance is insufficient
- Rate limiting may occur under high request volume

## How this service works

Guardian Passport — signed, expiring attestation of an address's measured risk profile. Present it to any counterparty; verify free at /api/passport/verify. Patterns, not verdicts. Agent guide: https://cyre.dev/SKILL.md

## Output

Returns a JSON object with the queried address, a 0-100 risk score (higher = riskier), a risk level enum (LOW/MEDIUM/HIGH), an array of explainable risk signals with point values and detail text, an Ed25519-signed expiring attestation object containing a presentable token, and mint affinity data indicating hold/touch affinity to seed RWA mints. The attestation token can be independently verified for free at /api/passport/verify.

## 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": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Solana wallet or program address (base58) to issue a passport for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "score": {
       "type": "number",
       "description": "0-100 risk score (higher = riskier)"
      },
      "address": {
       "type": "string"
      },
      "signals": {
       "type": "array",
       "description": "Explainable risk signals with points and detail"
      },
      "riskLevel": {
       "enum": [
        "LOW",
        "MEDIUM",
        "HIGH"
       ],
       "type": "string"
      },
      "attestation": {
       "type": "object",
       "description": "Ed25519-signed, expiring receipt. Present `token` to a counterparty; they verify it free at GET /api/passport/verify?token=..."
      },
      "mintAffinity": {
       "type": "array",
       "description": "Hold/touch affinity to seed RWA mints"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyre-guardian-passport-f04862ca/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)
