# Orion Base Sell Tax Check

> Orion Base Sell Tax 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-14).

Checks a Base memecoin token for sell tax traps, transfer restrictions, honeypot-style exits, and unsafe execution risks before a swap

## Facts

- Endpoint: GET https://orionkr.xyz/v1/base/sell-tax-check
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orionkr-xyz-fcdacb64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M-AAg5i0ni2DCX1W0uw2-

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-fcdacb64
```

Example prompt: Before I sell this Base memecoin, can you run a sell tax check on it and tell me if there are any honeypot traps, high sell taxes, or transfer restrictions I should know about?

## When to prefer this

Use this endpoint specifically when you need to check the sell side of a Base memecoin trade — particularly to detect honeypot-style traps, high sell taxes, and transfer restrictions that would prevent a profitable exit. Prefer this over general rug-check or buy-side APIs when your agent is about to execute or simulate a sell swap on a Base token.

## Known failure modes

- Invalid or unrecognized token address returns an error or unverified result
- Token not yet indexed on Base chain may return incomplete data
- Payment of 0.005 USDC not fulfilled causes 402 payment required response
- Network timeout or temporary service unavailability returns 5xx error
- Malformed POST body missing token address returns 400 bad request

## How this service works

Ultra-low-cost sell tax check for Base memecoin agents. Detect high tax, abnormal transfer restrictions, honeypot-style exits, and unsafe execution before swaps.

## Output

Returns a JSON object with a riskScore (numeric), riskLevel (e.g. LOW/MEDIUM/HIGH), a verified boolean, and a flags array listing any detected issues such as high sell tax, transfer restrictions, honeypot exits, or unsafe execution conditions.

## 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-fcdacb64/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)
