# Orion CINT Revenue Safety — Virtuals Agent Payment Safety

> Orion CINT Revenue Safety — Virtuals Agent Payment Safety 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).

Runs a payment safety workflow check for Virtuals and x402 agents on Base, returning a PASS/WAIT/FAIL verdict with risk score and recommended next action based on CINT RHC Pulse holder tiers, USDC creator-payout evidence, cbBTC context, and provider trust checks.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/agent-workflow-api
- 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-virtuals-agent-payment-safety-fa622672
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7o7PYJqtkQ2fbSnlRxLPE

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-virtuals-agent-payment-safety-fa622672
```

Example prompt: Before you send that USDC creator payout to 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base, run an Orion CINT Revenue Safety check on that address and tell me the verdict and risk score.

## When to prefer this

Use this endpoint when an autonomous agent (Virtuals, x402, or similar) needs a lightweight, paid pre-flight safety check specifically for CINT revenue distributions, USDC creator payouts, or cbBTC-related transactions on Base — especially when CINT RHC Pulse holder tier context or provider trust checks are relevant. Prefer over generic token scanners when operating within the Virtuals or x402 agent payment ecosystem and you need a workflow-style verdict with a recommended next call rather than just a raw risk score.

## Known failure modes

- Missing or invalid Base address returns an error or non-success response
- Non-Base chain specified (only Base is supported via chain=base const)
- Unrecognized token contract address may yield WAIT or FAIL verdict with blocking flags
- Network or upstream data unavailability may cause degraded risk scoring
- Payment failure (x402) if USDC balance is insufficient for the $0.01 fee

## 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: success (boolean), verdict string (PASS/WAIT/FAIL), risk_score (0–100 numeric), blocking_flags (array of issue strings), required_next_call (suggested follow-up endpoint path), and recommended_next_action (human-readable guidance on whether to proceed, recheck, or call before-signing endpoint).

## 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/agent-workflow-api",
  "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-virtuals-agent-payment-safety-fa622672/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)
