# CYRE Guardian Counterparty Alerts

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

Poll up to 10 blockchain addresses and return only those flagging HIGH risk, dormant-to-active, or burst transaction patterns on Base/EVM chains.

## Facts

- Endpoint: GET https://cyre.dev/api/alerts
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cyre-guardian-counterparty-alerts-a99688da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4dlHxatQA3dFasdEtkeWH

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-counterparty-alerts-a99688da
```

Example prompt: Check these 10 wallet addresses for me — 0xABC..., 0xDEF..., etc. — and only surface the ones showing HIGH risk, dormant-to-active transitions, or burst activity patterns right now.

## When to prefer this

Use this endpoint when you need to efficiently triage a batch of up to 10 addresses and only want actionable signals — HIGH risk, dormancy breaks, or burst activity — without noise from quiet addresses. Prefer it over single-address lookups when you have multiple counterparties to screen simultaneously. It is the right choice when you want pattern detection (not a verdict) and need to suppress clean addresses from your output to reduce agent processing overhead.

## Known failure modes

- Missing or malformed 'list' query parameter returns a 400 error
- More than 10 addresses in the list may be rejected or truncated
- Invalid minRisk enum value causes a validation error
- Payment not sent or insufficient USDC results in 402 Payment Required
- No addresses flagging the threshold returns an empty result set
- Temporary network or chain data unavailability may yield stale or incomplete signals

## How this service works

Guardian Counterparty Alerts — poll up to 10 watched addresses and return only those with HIGH risk, dormant→active, or burst patterns. Patterns, not verdicts. Agent guide: https://cyre.dev/SKILL.md

## Output

A filtered list of addresses (from the polled set) that triggered at least one of: HIGH risk score, dormant-to-active transition, or burst transaction pattern — along with the specific pattern type detected. Addresses with no signals are suppressed from the response.

## 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": [
      "list"
     ],
     "properties": {
      "list": {
       "type": "string"
      },
      "minRisk": {
       "enum": [
        "LOW",
        "MEDIUM",
        "HIGH"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

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