# Orion CINT Buyer Reputation Safety Check

> Orion CINT Buyer Reputation Safety Check is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Checks a Base wallet address's buyer reputation score and returns a PASS/WAIT/FAIL verdict with risk flags for agent payment safety before executing x402 or Virtuals protocol transactions.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/x402/buyer-reputation
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orion-cint-buyer-reputation-safety-check-c516333c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Eb7si03fXu7EWaGwklo3D

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-buyer-reputation-safety-check-c516333c
```

Example prompt: Before you process that x402 USDC payment, can you run a buyer reputation check on wallet 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base and tell me the risk score and verdict so I know if it's safe to proceed?

## When to prefer this

Use this endpoint as the first reputation gate when an AI agent is deciding whether to accept or process an incoming payment from an unknown Base wallet in an x402 or Virtuals protocol context. It is specifically designed for buyer-side reputation screening (not seller/token risk), and returns a stateful verdict with a TTL and a recommended follow-up call, making it ideal for multi-step autonomous agent safety workflows. Prefer this over generic token scanners when the primary concern is the paying wallet's trustworthiness rather than the token contract itself.

## Known failure modes

- Missing or invalid wallet/address parameter returns an error or empty result
- Address not found on Base chain may return low-confidence or inconclusive verdict
- Stale CINT RHC Pulse data may result in outdated tier information
- Network or provider trust check failure may result in a conservative WAIT verdict
- Rate limiting or payment failure (x402) 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 with a boolean success flag, a verdict string (PASS/WAIT/FAIL), a numeric risk_score (0-100), an array of blocking_flags identifying specific risk signals, a required_next_call field pointing to the recommended follow-up endpoint (e.g. /v1/base/transaction-safety), a recommended_next_action description, 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/x402/buyer-reputation",
  "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-buyer-reputation-safety-check-c516333c/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)
