# Orion CINT Revenue Safety – Guarded Swap Plan

> Orion CINT Revenue Safety – Guarded Swap Plan is a paid API for AI agents from orionkr.xyz, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Returns a risk-scored swap plan verdict (PASS/WAIT/FAIL) for a Base wallet or token address, incorporating CINT RHC Pulse holder tiers, USDC creator-payout evidence, cbBTC historical context, and provider trust checks before an agent executes a swap.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/guarded-swap-plan
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orion-cint-revenue-safety-guarded-swap-plan-82101e86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CP-l46O0pFVyl7Bs6ex4L

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 orion-cint-revenue-safety-guarded-swap-plan-82101e86
```

Example prompt: Before my Virtuals agent swaps 500 USDC into the token at 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base, run a guarded swap plan check on that address and tell me the risk score and whether I should proceed, wait, or block.

## When to prefer this

Choose this endpoint when an autonomous agent or Virtuals agent needs a structured, multi-signal risk verdict before executing a token swap or creator payout on Base — especially when CINT RHC Pulse holder tiers, USDC payout evidence, and cbBTC historical context are relevant. It is the first step in a stateful safety pipeline; use it before calling /v1/base/transaction-safety or /v1/base/before-signing. Prefer it over generic on-chain scanners when you need a PASS/WAIT/FAIL gate with a TTL-bounded verdict and explicit next-step routing.

## Known failure modes

- Missing or invalid Base address returns an error response with no verdict
- Unrecognized chain value (non-Base) may return an error or unsupported response
- Network or provider unavailability may return a non-200 error
- Expired verdict TTL means the result should be re-fetched before acting
- Payment failure (x402 USDC not authorized) blocks the call entirely

## How this service works

Orion CINT Revenue Safety is a Virtuals and x402 agent payment safety layer with live CINT RHC Pulse holder tiers, current USDC creator-payout evidence, historical cbBTC context, provider trust checks, transaction safety, and guarded swap planning.

## Output

Returns a JSON object containing: a boolean success flag, a verdict string (PASS/WAIT/FAIL), a numeric risk_score (0–100), an array of blocking_flags describing detected risks, the recommended required_next_call endpoint (e.g. /v1/base/transaction-safety or /v1/base/before-signing), a recommended_next_action explanation, the evaluated address, and a verdict_ttl_seconds indicating how long the verdict remains valid.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "const": "base"
      },
      "wallet": {
       "type": "string"
      },
      "address": {
       "type": "string",
       "description": "Base wallet, token, or contract address."
      },
      "amountIn": {
       "type": "string"
      },
      "tokenAddress": {
       "type": "string",
       "description": "Optional Base token contract address."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [],
     "properties": {
      "success": {
       "type": "boolean"
      },
      "verdict": {
       "type": "string"
      },
      "risk_score": {
       "type": "number"
      },
      "blocking_flags": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "required_next_call": {
       "type": "string"
      },
      "verdict_ttl_seconds": {
       "type": "number"
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": "0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9",
  "success": true,
  "verdict": "WAIT",
  "endpoint": "/v1/base/guarded-swap-plan",
  "risk_score": 42,
  "blocking_flags": [],
  "required_next_call": "/v1/base/transaction-safety",
  "recommended_next_action": "If context changed, call /v1/base/transaction-safety; if signing real capital, call /v1/base/before-signing first."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orion-cint-revenue-safety-guarded-swap-plan-82101e86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orionkr.xyz](https://www.zero.xyz/host/orionkr.xyz/llms.txt)
