# Orion CINT Revenue Safety — Repeat Buyer Bundle

> Orion CINT Revenue Safety — Repeat Buyer Bundle is a paid API for AI agents from orionkr.xyz, paid per call via x402, $3/call, status unknown (last checked 2026-09-14).

Returns a PASS/WAIT/FAIL safety verdict with risk score and blocking flags for a Base wallet or token address, specifically for repeated autonomous agent payment and swap decisions involving CINT/Virtuals ecosystems.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/acp/repeat-buyer-bundle
- Price: $3/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-repeat-buyer-bundle-2288ea4e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p6JmW9fTqAyHy1mcBn51q

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-repeat-buyer-bundle-2288ea4e
```

Example prompt: Before my Virtuals agent repeats that USDC creator payout to 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base, run the Orion repeat-buyer safety check and tell me whether it's a PASS, WAIT, or FAIL with the risk score and any blocking flags.

## When to prefer this

Choose this endpoint when an autonomous agent is executing repeated payment or swap decisions on Base, especially within the Virtuals or CINT ecosystem, and needs a stateful PASS/WAIT/FAIL safety gate before committing capital. It is specifically designed for repeat-buyer loops and DCA scenarios rather than one-off address lookups. Prefer it over generic token scanners when CINT holder tier context, Virtuals creator payout evidence, or x402 agent payment safety are relevant to the decision.

## Known failure modes

- Missing or invalid Base wallet/token address returns an error or unhelpful verdict
- Chain parameter must be 'base'; other chains not supported
- Stale or unavailable CINT RHC Pulse data may reduce verdict accuracy
- $3 USDC payment required per call; unpaid requests are rejected with 402
- High-risk addresses may return FAIL with blocking flags requiring upstream human review before proceeding

## 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

A JSON object containing a boolean success flag, a verdict string (PASS, WAIT, or FAIL), a numeric risk score (0–100), an array of blocking flag strings, the queried address, the current endpoint path, a TTL in seconds for how long the verdict is valid, and a recommended next call endpoint (e.g. /v1/base/transaction-safety or /v1/base/before-signing) with an action description.

## 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/acp/repeat-buyer-bundle",
  "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-repeat-buyer-bundle-2288ea4e/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)
