# Orion CINT Revenue Safety — Repeat Purchase Policy

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

Evaluates repeat-purchase safety for Virtuals/x402 agent payments by checking CINT RHC Pulse holder tiers, USDC creator-payout evidence, cbBTC context, and provider trust to return a PASS/WAIT/FAIL verdict with a risk score.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/x402/repeat-purchase-policy
- Price: $0.001/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-purchase-policy-5c04267a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OB7oASyIWi51EsAwyfrBW

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-purchase-policy-5c04267a
```

Example prompt: Before my agent makes another repeat purchase on Base for wallet 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9, run an Orion repeat-purchase safety check on that address and tell me whether it's a PASS, WAIT, or FAIL and what the risk score is.

## When to prefer this

Use this endpoint when an AI agent is operating a repeat-purchase or DCA loop on Base and needs a lightweight, cheap safety gate ($0.001 USDC) specifically tuned for Virtuals/x402 payment flows, CINT RHC Pulse holder tiers, and USDC creator payouts — especially when you want a structured PASS/WAIT/FAIL verdict with a recommended next-call chain rather than a generic token screener.

## Known failure modes

- Missing required address or wallet parameter returns an error or empty response
- Chain parameter must be 'base'; other chains are unsupported
- Invalid or malformed Base address causes a failed lookup
- Stale or unavailable CINT on-chain data may delay or degrade verdict accuracy
- Rate limiting or payment failure at the x402 layer returns 402 status

## 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, a required_next_call path recommending the next safety step, 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/x402/repeat-purchase-policy",
  "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-purchase-policy-5c04267a/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)
