# CYRE Guardian Address Risk Profile

> CYRE Guardian Address Risk Profile 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).

Returns an explainable on-chain risk score and detailed signal breakdown for a given Solana wallet or program address

## Facts

- Endpoint: GET https://cyre.dev/api/address
- 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-address-risk-profile-5fb5ff9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eztx8T7VUZJi1D2DnIfdS

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-address-risk-profile-5fb5ff9e
```

Example prompt: Can you check the on-chain risk profile for the Solana address 9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM and tell me its risk score, level, and what signals triggered it?

## When to prefer this

Choose this endpoint when you need human-readable, explainable risk signals for a specific Solana wallet or program address — not just a verdict but a breakdown of why. Prefer it over generic blockchain explorers when your agent needs structured risk data (score, level, signals) that can be acted on programmatically, or when you need wallet behavioral profile data like age, activity, and balance stats for downstream decision-making.

## Known failure modes

- Invalid or malformed base58 address returns an error response
- Address not found on Solana returns no profile or empty signals
- Payment not received (x402 payment required) returns 402 status
- Rate limiting or quota exhaustion returns 429 or error
- Network or provider downtime results in 5xx errors

## How this service works

Guardian address profile — explainable on-chain risk signals. Patterns, not verdicts. Agent guide: https://cyre.dev/SKILL.md

## Output

Returns a JSON object with: a boolean ok status, a numeric risk score from 0–100 (higher means riskier), the queried address, a profile object with wallet age, activity, and balance statistics, an array of explainable risk signals each with point values and detail text, and a riskLevel enum of LOW, MEDIUM, or HIGH.

## 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 risk-grade"
      }
     }
    }
   },
   "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"
      },
      "profile": {
       "type": "object",
       "description": "Wallet age, activity and balance stats"
      },
      "signals": {
       "type": "array",
       "description": "Explainable risk signals with points and detail"
      },
      "riskLevel": {
       "enum": [
        "LOW",
        "MEDIUM",
        "HIGH"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cyre-guardian-address-risk-profile-5fb5ff9e/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)
