# Orion Do-Not-Execute Check

> Orion Do-Not-Execute Check is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Pre-trade safety gate for Base memecoin transactions that returns DO_NOT_EXECUTE, RECHECK, or SAFE_TO_CONTINUE with risk flags for honeypot, sell tax, fake liquidity, slippage, calldata, approval, and route risk.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/do-not-execute-check
- Price: $0.005/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-8e5d7076
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dt2L8Ky1j6YJbAFhv2eue

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-8e5d7076
```

Example prompt: Before I sign this Base memecoin swap, run the do-not-execute check on it and tell me if it's SAFE_TO_CONTINUE, needs a RECHECK, or should be blocked — flag any honeypot, fake liquidity, or sell tax risks.

## When to prefer this

Use this endpoint as an ultra-low-cost ($0.005 USDC) pre-trade gate in autonomous trading loops on Base before signing or broadcasting any memecoin transaction. Prefer it over generic rug-check APIs when you need a structured machine-readable verdict (DO_NOT_EXECUTE/RECHECK/SAFE_TO_CONTINUE) with granular per-category blocking flags suitable for automated agent decision trees.

## Known failure modes

- Token address not found on Base — returns error or unverified flag
- Insufficient liquidity data to assess fake liquidity — may return RECHECK
- Malformed transaction calldata — returns validation error
- Payment not processed (x402) — 402 Payment Required response
- Network timeout on-chain data fetch — returns transient error

## How this service works

Ultra-low-cost do-not-execute check for autonomous trading agents. Call before signing or broadcasting a Base memecoin transaction to receive DO_NOT_EXECUTE, RECHECK, or SAFE_TO_CONTINUE with blocking flags for honeypot, sell tax, fake liquidity, slippage, calldata, approval, and route risk.

## Output

A JSON object with a verdict field (DO_NOT_EXECUTE, RECHECK, or SAFE_TO_CONTINUE), a numeric riskScore (0-100), a riskLevel (LOW/MEDIUM/HIGH), a verified boolean, and an array of blocking flags identifying specific risk categories detected such as honeypot, sell tax, fake liquidity, slippage, calldata, approval risk, and route risk.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orionkr-xyz-8e5d7076/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)
