# Orion CINT Revenue Safety — Approval Spender Check

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

Checks whether a Base blockchain address, token, or contract is safe to approve as a spender before an agent executes a swap or token approval, returning a PASS/WAIT/FAIL verdict with a risk score and blocking flags.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/approval-spender-check
- Price: $0.05/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-revenue-safety-approval-spender-check-388dff8d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sohrbDnXSWmmJP2kqUqPT

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-approval-spender-check-388dff8d
```

Example prompt: Before my agent approves the spender contract at 0x4497464A3eAFAd8153cFd7F4681966a472f1bAb9 on Base to swap 500 USDC, run an Orion approval-spender safety check and tell me the risk score and whether it's safe to proceed.

## When to prefer this

Use this endpoint as the first gate before any token approval or swap on Base, especially in autonomous agent flows where a human is not manually reviewing each transaction. It is specifically designed for Virtuals and x402 agent pipelines and integrates with the Orion stateful safety chain (followed by /v1/base/transaction-safety and /v1/base/before-signing). Prefer this over generic on-chain lookups when you need a structured PASS/WAIT/FAIL verdict with a TTL, blocking flags, and a guided next-step recommendation.

## Known failure modes

- Address not on Base — returns error or unexpected verdict if a non-Base address is supplied
- Missing required address param — API may return a 400 or empty result
- Contract not indexed — unknown or newly deployed contracts may return a high risk score by default due to lack of history
- Stale verdict — if TTL has expired, the result may no longer reflect current chain state
- Rate limit or payment failure — x402 payment not processed correctly results in 402 response

## 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 describing detected issues, a verdict_ttl_seconds indicating how long the result is valid, and a required_next_call path pointing to the recommended follow-up endpoint (e.g. /v1/base/transaction-safety or /v1/base/before-signing).

## 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/base/approval-spender-check",
  "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-approval-spender-check-388dff8d/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)
