# Orion CINT Revenue Safety – Butler Upgrade Risk Check

> Orion CINT Revenue Safety – Butler Upgrade Risk Check is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a PASS/WAIT/FAIL risk verdict for a Base wallet or token address before Virtuals agent payments, USDC creator payouts, or cbBTC-related swaps, using live CINT RHC Pulse holder tiers and provider trust checks.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/economyos/butler-upgrade-risk
- Price: $0.01/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-butler-upgrade-risk-check-9d4bc5d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xRSjhtUz5GzxkMpbLKeJO

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-butler-upgrade-risk-check-9d4bc5d4
```

Example prompt: Before I send that USDC creator payout to 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base, run an Orion butler upgrade risk check on it and tell me the risk score and verdict.

## When to prefer this

Use this endpoint when an AI agent is about to execute or approve a Virtuals agent payment, USDC creator payout, or cbBTC swap on Base and needs a structured PASS/WAIT/FAIL safety gate — especially when CINT RHC Pulse holder tier context or x402 provider trust validation is relevant. Prefer this over generic token scanners when you need Virtuals-protocol-aware risk context and explicit next-step routing.

## Known failure modes

- Missing or invalid Base address returns an error or low-confidence verdict
- Non-Base chain specified (only 'base' is supported via the chain param)
- Stale data if CINT RHC Pulse tier or on-chain state has changed since verdict TTL expired
- Network timeout from upstream provider trust checks causing delayed or failed response
- WAIT verdict returned when risk is ambiguous, requiring a follow-up call to /v1/agent-commerce/job-escrow-preflight

## 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 with a boolean success flag, a verdict string (PASS, WAIT, or FAIL), a numeric risk_score (0–100), an array of blocking_flags explaining any issues, a required_next_call path for follow-up API steps, a recommended_next_action description, and a verdict_ttl_seconds indicating how long the verdict is 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/economyos/butler-upgrade-risk",
  "risk_score": 42,
  "blocking_flags": [],
  "required_next_call": "/v1/agent-commerce/job-escrow-preflight",
  "recommended_next_action": "If context changed, call /v1/agent-commerce/job-escrow-preflight; 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-butler-upgrade-risk-check-9d4bc5d4/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)
