# Orion Base Safe Execution Check

> Orion Base Safe Execution 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).

Pre-trade safety check for Base memecoin swaps detecting honeypots, fake liquidity, sell-tax danger, slippage risk, and route risk before execution.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/safe-execution-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/orionkr-xyz-8d801bd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n5DL96Uacc_Y1h_61KVEO

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 orionkr-xyz-8d801bd7
```

Example prompt: Before I execute this swap on Base, run a safe execution check on this memecoin token to flag any honeypot signs, fake liquidity, sell-tax danger, or slippage risk — I need the risk score and any safety flags before I sign.

## When to prefer this

Use this endpoint as a mandatory pre-execution gate in any autonomous Base memecoin trading loop, particularly when you need a low-cost ($0.005 USDC) real-time safety signal before signing or broadcasting a swap. Prefer this over generic rug-check endpoints when you need execution-specific signals like route risk and slippage danger, not just token-level metadata.

## Known failure modes

- Token address not found on Base — returns error or unverified result
- Insufficient liquidity data — risk flags may be incomplete
- Payment not received or invalid x402 payment header — returns 402
- Malformed request body — returns 400 with validation error
- Temporary upstream data unavailability — may return degraded or cached risk signal

## How this service works

Ultra-low-cost safe execution check for autonomous Base memecoin agents. Use before signing or executing a swap to detect unsafe execution, route risk, slippage risk, honeypot signs, sell-tax danger, fake liquidity, and transaction risk.

## Output

Returns a JSON object with a list of risk flags (e.g. honeypot, fake liquidity, sell-tax), a verified boolean, a riskLevel string (LOW/MEDIUM/HIGH), and a numeric riskScore (0-100). A LOW riskScore with verified:true indicates the swap is likely safe to proceed.

## 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/safe-execution-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/orionkr-xyz-8d801bd7/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)
