# CYRE Guardian – Solana Program Novelty & Age Pattern Brief

> CYRE Guardian – Solana Program Novelty & Age Pattern Brief 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).

Returns novelty and age pattern signals for a Solana program ID, with optional wallet context to assess behavior before first interaction

## Facts

- Endpoint: GET https://cyre.dev/api/program
- 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-solana-program-novelty-age-pattern-brief-df8d871f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v54EuKV4A90RVXNqGNS6O

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-solana-program-novelty-age-pattern-brief-df8d871f
```

Example prompt: Before my wallet touches this program, can you pull the novelty and age pattern brief for Solana program ID TokenkegQfeZyiNwAJbNbGKPFXCWuBvf8Ss623VQ5DA and also check my wallet 7v91N7iZ9mNicL8WfG6cgSCKyRXydQjLh6UYBWwm6y1 for any pre-first-touch context?

## When to prefer this

Use this endpoint when you need on-chain novelty and age pattern signals specifically for a Solana program ID — especially before a wallet makes first contact with an unknown program. Prefer this over generic blockchain explorers when you need structured, agent-consumable risk pattern data rather than raw transaction history. It is the right choice for pre-interaction due diligence on Solana smart contracts in agentic payment or DeFi workflows.

## Known failure modes

- Invalid or malformed Solana program ID returns an error or empty result
- Program ID not found on-chain yields no pattern data
- Optional wallet address that is malformed may be ignored or cause an error
- Rate limiting or payment failure (x402) if USDC micro-payment not completed
- Network or RPC delays may cause timeouts for very new programs not yet indexed

## How this service works

Guardian Program Brief — novelty and age patterns for a Solana program id, with optional wallet context before first touch. Patterns, not verdicts. Agent guide: https://cyre.dev/SKILL.md

## Output

A pattern brief including novelty signals (how recently deployed, whether deployment patterns are atypical) and age patterns for the given Solana program ID, optionally enriched with wallet-context signals if a wallet address is provided before its first touch of the program. Returns patterns, not pass/fail verdicts.

## 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": [
      "programId"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Optional wallet for age/context comparison"
      },
      "programId": {
       "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-solana-program-novelty-age-pattern-brief-df8d871f/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)
