Guardian Passport — signed, expiring attestation of an address's measured risk profile
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
5000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-30
updated
Provider
cyre.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1",
"payTo": "9iubApKktcxphCVgBg9CPRPhSH8nkzVRSapxhYwxfCVS",
"asset": "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU",
"amount": "5000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9Ff25C4acf1DcDDf15fD2702C127A285f1dFa712",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
},
"type": "http"
},
"output": {
"example": {
"address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"attestation": {
"alg": "Ed25519",
"claims": {
"address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"expiresAt": "2026-08-30T00:00:00.000Z",
"issuedAt": "2026-08-29T00:00:00.000Z",
"riskLevel": "LOW",
"score": 12
},
"issuer": "cyre.dev",
"token": "<base64url-claims>.<base64url-signature>"
},
"kind": "cyre-passport",
"mintAffinity": [
{
"hold": false,
"symbol": "USDY",
"touch": false
}
],
"ok": true,
"riskLevel": "LOW",
"score": 12,
"signalsEvaluated": 6,
"signalsTriggered": 0
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"description": "Solana wallet or program address (base58) to issue a passport for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"attestation": {
"description": "Ed25519-signed, expiring receipt. Present `token` to a counterparty; they verify it free at GET /api/passport/verify?token=...",
"type": "object"
},
"mintAffinity": {
"description": "Hold/touch affinity to seed RWA mints",
"type": "array"
},
"ok": {
"type": "boolean"
},
"riskLevel": {
"enum": [
"LOW",
"MEDIUM",
"HIGH"
],
"type": "string"
},
"score": {
"description": "0-100 risk score (higher = riskier)",
"type": "number"
},
"signals": {
"description": "Explainable risk signals with points and detail",
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://cyre.dev/api/passport" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://cyre.dev/api/passport");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://cyre.dev/api/passport")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/8338.json, and this resource appears in /discovery/resources and /discovery/search.