# Orion Paid Token/Address Risk Scan (v1/scan-paid)

> Orion Paid Token/Address Risk Scan (v1/scan-paid) is a paid API for AI agents from orionkr.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Performs a paid pre-trade risk scan on a token or address to detect rug risk, fake liquidity, and swap safety signals before executing a buy, swap, DCA, or memecoin entry.

## Facts

- Endpoint: GET https://orionkr.xyz/v1/scan-paid
- Price: $0.02/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-69639fbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JQMT5AzTp-cqyOV-AwFsr

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-69639fbf
```

Example prompt: Before you execute that swap on Base, run a paid Orion risk scan on token address 0xABC...123 — I need to know if it's a rug, has fake liquidity, or should be blocked before the buy goes through.

## When to prefer this

Use this endpoint as a pre-trade gate before any autonomous swap, DCA, or memecoin buy on Base — especially when running repeated trading loops where a cheap risk check ($0.02 USDC) can prevent costly rug pulls or fake liquidity traps. Prefer this over cheaper Orion probe endpoints when you need a full risk scan including fake liquidity and swap safety, not just a narrow wallet probe.

## Known failure modes

- Invalid or unrecognized token/contract address returns an error or empty risk data
- Insufficient USDC payment (below $0.02) results in 402 Payment Required response
- Token not deployed on Base network may return unsupported asset error
- Network congestion or provider downtime may cause timeout or 503 response
- Malformed POST body returns 400 Bad Request

## How this service works

Orion paid token/address risk scan before swaps, buys, DCA, and memecoin entries.

## Output

Returns a structured risk assessment including a PASS/WAIT/FAIL verdict, rug risk signals, fake liquidity indicators, suspicious counterparty flags, and swap safety rating for the scanned token or address on Base.

## 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-69639fbf/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)
